body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background-color: #F8F9FA;
}

.navbar {
    background-color: #9BB8ED;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.navbar-toggler {
    color: #fff;
    font-size: 1.2rem;
    border: none;
    background: none;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    color: #FFFFFF;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: #FFDDE4;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 56px;
    left: 0;
    background-color: #DEE5D4;
    border-right: 2px solid #8EACCD;
    height: 100vh;
    padding-top: 1rem;
    transition: all 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

#sidebar .nav-link {
    color: #333;
    font-weight: 500;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#sidebar .nav-link:hover {
    background-color: #3CAEA3;
    color: #FFFFFF;
}

#sidebar ul ul {
    padding-left: 20px;
}

#sidebar ul ul .nav-link {
    padding-left: 30px;
    font-size: 0.9rem;
}

#content {
    padding-top: 80px;
    padding-bottom: 50px;
    padding-left: 250px;
    transition: margin-left 0.3s ease;
}

#content.active {
    margin-left: 0;
}

.container {
    padding-bottom: 2rem;
}

@media (max-width: 768px) {
    #sidebar {
        left: -250px;
    }

    #sidebar.active {
        left: 0;
    }

    #content {
        padding-left: 15px;
    }

    .navbar-toggler {
        margin-right: auto;
    }
}

.custom-table {
    border-collapse: collapse;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-table th {
    background-color: #D2E0FB;
    color: #333;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

.custom-table td {
    padding: 10px;
    text-align: left;
}

.custom-table td:hover {
    background-color: #FEF9D9;
}

.custom-card {
    background: WHITE;
    border-radius: 12px;
    border: 1px solid #DEE5D4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-card h2 {
    color: #333;
    font-weight: bold;
    margin-bottom: 0;
    font-size: 1.5rem;
    text-align: center;
}

.custom-card .card-header {
    background-color: #8EACCD;
    color: #FFFFFF;
    padding: 1rem;
    border-bottom: 1px solid #DEE5D4;
}

footer {
    background-color: #8EACCD;
    color: #FFFFFF;
    padding: 0.5rem 0;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 0.9rem;
}

.row.mb-3 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.row.mb-3 .col-md-6 {
    flex: 1;
    font-weight: bold;
}
