body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
    padding-top: 80px; 
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

h2 {
    color: #116530; 
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 30px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #116530 !important;   
    color: rgb(255, 255, 255);
    box-shadow: 0 2px 4px rgba(0, 0, 0.1, 0.1);

    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.nav-left {
    display: flex;
    align-items: center;
}

.navbar .logo {
    width: 50px; 
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
}

.navbar .title-group h1 {
    font-size: 1.4rem;
    margin: 0;
}

.navbar .title-group p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    color: #f8f8f5;
}

.nav-right {
    display: flex;
    gap: 10px;
}

.btn-dashboard,
.btn-export {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.btn-dashboard {
    background-color: #f1ee1a; 
    color: white;
}

.btn-dashboard:hover {
    background-color: #f1ee1a; 
}

.btn-export {
    background-color: #e1ef1e;
    color: white;
}

.btn-export:hover {
    background-color: #f2f221;
}

.filter-form {
    gap: 10px; 
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap; 
}

.filter-form .form-select {
    max-width: 150px; 
}

.chart-box {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chart-box h5 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
}

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 15px;
    }
    
    .nav-left {
        margin-bottom: 10px;
    }
    
    .nav-right {
        width: 100%;
        flex-direction: column; 
    }

    .btn-dashboard,
    .btn-export {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-form .form-select,
    .filter-form .btn {
        width: 100%;
        max-width: none;
        margin-top: 5px;
    }

    .chart-box {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .navbar .title-group h1 {
        font-size: 1.2rem;
    }
    .navbar .title-group p {
        font-size: 0.7rem;
    }
}
