* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* border: 1px rgb(255, 42, 42) solid; */
}

/* ::-webkit-scrollbar-track {
    background: #0a0a0a; 
  }
  

  ::-webkit-scrollbar-thumb {
    background: #282829;
  }
  

  ::-webkit-scrollbar {
    width: 12px;
    height: 12px;
  } */

body {
    font-family: Poppins;
}

.custom-search-input {
    background-color: #0a0a0a;
    border: 2px solid #1a1919;
}

.custom-search-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    /* Remove default appearance in WebKit browsers */
    background: none;
    border: none;
    color: #d3d3d3;
    /* Set the cancel button color */
}

.custom-search-input:focus {
    border-color: #d3d3d3;
    /* Border color on focus */
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0);
    /* Glow effect on focus */
    outline: none;
    /* Remove default outline */
}

#btn1 {
    background-color: #f3f3f5;
}

#btn1:hover {
    background-color: #c7c7c7;
}

#active {
    background-color: #74747438;
    border-radius: 5px;
}

#active2 {
    background-color: #74747438;
    border-radius: 5px;
}

.nav-link:hover {
    background-color: rgb(22, 22, 22);
    transition: all 0.3s ease;
}

.table {
    background-color: #0a0a0a;
}

.table tbody tr:hover {
    background: #282829;
    transition: all 0.3s ease;
}

.card-custom {
    background-color: #0a0a0a;
    border: solid 2px #1a1919;
    height: 300px;
    /* Set a fixed height for the card */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-custom .card-header,
.card-custom .card-footer {
    background-color: #080808;
    color: #d3d3d3;
    padding: 10px;
}

.card-header {
    border-bottom: solid 2px #1a1919;
}

.card-custom .card-title {
    margin: 5px 0;
}

.card-custom .card-subtitle {
    font-size: 14px;
    margin-top: 5px;
}

.card-custom .card-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.card-custom .card-img {
    max-height: 100px;
    /* Set a maximum height for the images */
    max-width: 100%;
    /* Ensure the image doesn't exceed the card width */
    object-fit: contain;
    /* Preserve aspect ratio and fit the image within the bounds */
}

.card-custom .card-footer {
    border-top: solid 2px #1a1919;
    padding: 10px;
}


.card {
    background-color: #131212;
    border: solid 2px #1a1919;
    transition: all .3s ease-in-out;
}

.card-header {
    /* background-color: #080808; */
    background-color: #131212;
    color: #d3d3d3;
    border-bottom: solid 2px #1a1919;
}

.card-title {
    margin-top: 0;
    font-size: 16px;
}

.card-subtitle {
    font-size: 14px;
}

.card-body img {
    max-height: 200px;
    /* Adjust the height as needed */
    object-fit: cover;
}

.card-footer {
    /* background-color: #080808; */
    color: #d3d3d3;
    border-top: solid 2px #1a1919;
    background-color: #131212;
}

code,
a {
    color: #8857e4;
}

a {
    text-decoration: none;
}

a:hover {
    color: #8857e4;
}



#cardhover:hover {
    transform: scale(1.05);
    transition: all .3s ease-in-out;
}

/* You can move this CSS to your stylesheet */
#toast {
    display: none;
    /* Initially hidden */
    position: fixed;
    /* Fixed position to make it appear above content */
    top: 20px;
    /* Position from the top */
    right: 20px;
    /* Position from the right */
    background-color: #61af61;
    /* Dark background color */
    color: white;
    /* White text color */
    padding: 15px;
    /* Padding for content */
    border-radius: 5px;
    /* Rounded corners */
    z-index: 1000;
    /* High z-index to appear above other content */
    transition: opacity 0.5s ease-in-out;
    /* Smooth fade-out effect */
}

#simple-modal .modal-dialog {
    max-width: 800px;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#simple-modal .modal-body {
    position: relative;
    padding: 50px 100px;
    min-height: 400px;
    background: #0a0a0a;
    margin: auto;
    border-bottom: 3px solid #1a1919;
    border-left: 3px solid #1a1919;
    border-right: 3px solid #1a1919;
}

#image {
    width: 100%;
}

.modal-header {
    background-color: #131212;
    border: solid 3px #1a1919;
}

.modal-body {
    border-radius: 0 0 5px 5px;
}

