body {
    background-color: #f8f5f2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #5a5a5a;
    line-height: 1.6;
}

.sidebar {
    background-color: #8fb996;
    min-height: 100vh;
    padding: 0;
}

.sidebar-header {
    border-bottom: 1px solid #e0e0e0;
    color: #4a4a4a;
    padding: 20px;
}

.sidebar .nav-link {
    color: white;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar .nav-link:hover {
    background-color: #8fb996;
    color: #4a4a4a;
}

.sidebar .nav-link.active {
    background-color: white;
    color: #4a7c59;
    border-left: 4px solid #98b694;
}

.main-content {
    padding: 20px;
    background-color: #f8f5f2;
}

.dashboard-header {
    background-color: #4a7c59;
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.section-title {
    border-left: 4px solid #4a7c59;
    padding-left: 15px;
    margin-bottom: 20px;
    color: #4a7c59;
    font-weight: 600;
}

.card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: #4a7c59;
    font-weight: 600;
    margin-bottom: 15px;
}

.stat-card {
    border: none;
    border-radius: 8px;
    color: white;
    text-align: center;
    padding: 20px;
}

.stat-card-1 {
    background-color: #4a7c59;
}

.stat-card-2 {
    background-color: #8fb996;
    color: #ffffff;
}

.stat-card-3 {
    background-color: #9fb996;
    color: white;
}

.stat-card-4 {
    background-color: #5a7c59;;
    color: white;
}

.stat-card .number {
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0;
}

.progress {
    height: 20px;
    border-radius: 10px;
    background-color: #f0f0f0;
    margin: 10px 0;
}

.progress-bar {
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.progress-1 {
    background-color: #4a7c59;
}

.progress-2 {
    background-color: #8fb996;
}

.progress-3 {
    background-color: #9fb996;
}

.progress-4 {
    background-color: #4a7c59;
}

.progress-5 {
 background-color: #5a7c59;
}

.alert {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    border-left: 4px solid;
    background-color: white;
    margin-bottom: 15px;
    padding: 15px;
}

.alert-success {
    border-left-color: #4a7c59;
}

.alert-warning {
    border-left-color: #8f8f8f;
}

.alert-info {
    border-left-color: #9fb996;
}


.btn {
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    margin: 2px;
    font-weight: 500;
}

.btn-custom-1 {
    background-color: #4a7c59;
    color: white;
}

.btn-custom-2 {
    background-color: #8fb996;
    color: white;
}

.btn-custom-3 {
    background-color: #9fb996;
    color: white;
}

.btn-custom-4 {
    background-color: #5a7c59;
    color: white;
}

.btn-outline-custom-1 {
    border: 2px solid #4a7c59;
    color: #8fb996;
    background-color: transparent;
}

.btn-outline-custom-1:hover {
    background-color: #4a7c59;
    color: white;
}

.pagination {
    margin: 15px 0;
}

.page-link {
    color: #5a7c59;
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
}

.page-item.active .page-link {
    background-color: #4a7c59;
    border-color: #9fb996;
    color: white;
}

@media (max-width: 768px) {
    .sidebar {
        min-height: auto;
        margin-bottom: 15px;
    }

    .main-content {
        padding: 15px;
    }

    .stat-card .number {
        font-size: 1.6rem;
    }
}