
/* ---------------------------------------------
   Global Spacing
--------------------------------------------- */
.welcome {
    padding-top: 60px;
}

/* ---------------------------------------------
   Header: Fixed Top Navigation Bar
--------------------------------------------- */
.custom-header {
    background-color: #3A3A3A;
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 1000;
    border-radius: 15px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 40px;
    margin-right: 15px;
}

.header-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.2;
    margin-right: 20px;
}

.nav-link {
    color: white !important;
    font-size: 16px;
    margin: 0 10px;
}

.nav-link:hover {
    text-decoration: underline;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: rgba(58, 58, 58, 0.9) !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    padding: 10px 0 !important;
}

.dropdown-item {
    color: white !important;
    font-size: 14px;
    padding: 10px 20px !important;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
}

/* ---------------------------------------------
   Footer Styling
--------------------------------------------- */
.custom-footer,
.copyright {
    background-color: #21006D;
    color: white;
    padding: 10px 0;
}

.footer-logo img {
    max-width: 80%;
    height: auto;
}

.footer-bottom {
    text-align: center;
    font-size: 16px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ---------------------------------------------
   Button Styles
--------------------------------------------- */
.btn-orange {
    background-color: #29169C; /* F5633D */
    color: white;
}

.btn-orange:hover {
    background-color: #F5633D; /* #D94E32 */
    color: white;
}

.btn-dark-blue {
    border-radius: 30px;
    background: #1E1E9F;
    border: none;
}

/* ---------------------------------------------
   Data Table Customization
--------------------------------------------- */
.no-bg-table th,
.no-bg-table td {
    background-color: transparent !important;
    border: none !important;
    padding: 3px 8px !important;
    line-height: 1.2 !important;
}

.no-bg-table th {
    width: 100px;
}

.no-bg-table td {
    width: 50px;
}

.dataTables_wrapper thead th {
    background-color: #1E1E9F !important;
    color: white !important;
    text-align: center;
    padding: 12px;
}

.dataTables_wrapper tbody tr:nth-child(odd) {
    background-color: #EEEEEE !important;
}

.dataTables_wrapper tbody tr:nth-child(even) {
    background-color: white !important;
}

/* ---------------------------------------------
   Category Cards (Record LR Page)
--------------------------------------------- */
.category-container {
    max-width: 1280px;
    margin: 50px auto;
    padding-top: 80px;
}

.category-card {
    background-color: #EEF2FF;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 40px;
    height: 40px;
    background-color: #0038A8;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.category-icon i {
    font-size: 30px;
    color: white;
}

.category-title {
    font-size: 18px;
    font-weight: bold;
    color: #0038A8;
}

/* ---------------------------------------------
   Panels (Dataset Display)
--------------------------------------------- */
.dataset-panel {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.darkblue-header,
#ccc-header {
    background-color: #3C4B7F;
}

/* ---------------------------------------------
   Tab Navigation
--------------------------------------------- */
.nav-tabs .nav-link {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    padding: 15px;
    color: #3C4B7F; !important;
    background-color: #727272;
    border-radius: 8px;
    border: 2px;
    transition: all 0.3s ease;
    gap: 10px;
    text-decoration: none !important;
}

.nav-tabs .nav-item {
    margin-right: 5px;
}

.nav-tabs .nav-link.active {
    background-color: #3C4B7F !important;
    color: white !important;
}

.nav-tabs .nav-link:hover {
    background-color: #A9B8E0;
    color: #3C4B7F;
}

/* ---------------------------------------------
   Chart Container
--------------------------------------------- */
#chart-container {
    width: 100%;
    height: 600px;
}

/* ---------------------------------------------
   Bootstrap Card Headers (Browse Section)
--------------------------------------------- */
.card-header {
    background-color: #3C4B7F !important;
    color: white !important;
    font-weight: bold;
    text-align: center;
}
