body {
    color: rgb(32, 32, 32) !important;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a; 
    font-size: 14px;
}

/* Navbar */
.custom-navbar {
    background-color: #141414ec !important;
    border-bottom: 1px solid #383838 !important;
    margin-bottom: 20px;

    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}
.custom-navbar-title a{
    font-size: 28px;
    font-weight: 600;
    margin-right: 50px;
    color: white !important;
    text-decoration: none !important;
}
.nav-link {
    font-weight: 500 !important;
    color:rgb(255, 255, 255) !important;
}
.active {
    color: rgb(255, 202, 96) !important;
}


/* Custom Cards  */
.custom-info-card {
    position: relative;
    background-color: #141414ec !important;
    border: 1px solid #383838 !important;
    border-radius: 6px;
    color: white;
    min-width: 280px;
}
.card-img-top {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
}
.card-title {
    font-size: 20px;
    margin-bottom: 0px;
}
.card-text {
    font-size: 13px;
    color: #8f8f8f;
}
.card-btn {
    background-color: rgb(255, 202, 96) !important;
}

/* Buttons */
.btn-custom {
    background-color: rgb(255, 202, 96) !important;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 700;
}

/* Inputs */
.custom-input {
    background-color: #272727ec !important;
    border: 1px solid #383838 !important;
    border-radius: 6px;
    color: white !important;
}
.custom-input::placeholder {
   color: #8b8b8b;
}

/* Tables */
.table-wrapper {
    width: 100%;
    height: 500px;
    overflow: auto;
    border: 1px solid #383838;
    border-radius: 6px;
}

/* Scrollbar styling */
.table-wrapper::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.table-wrapper::-webkit-scrollbar-track {
    background-color: #141414;
    border-radius: 6px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background-color: #383838;
    border-radius: 6px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #555555;
}

/* Firefox scrollbar styling */
.table-wrapper {
    scrollbar-color: #383838 #141414;
    scrollbar-width: thin;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #131313; /* Matches card background */
    color: white;
    font-size: 12px;
}
.custom-table th, .custom-table td {
    padding: 6px 8px;
    font-size: 11px;
}
.custom-table tr:hover {
    background-color: #101010;
    transition: background-color 0.2s ease-in-out;
}
.custom-table thead {
    background-color: #101010 !important;
    color: rgb(255, 255, 255); /* Accent color */
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
}
.custom-table td {
    color: #d6d6d6;
    font-size: 14px;
}