:root {
    --bs-primary: #74A059;
    --bs-primary-dark: #4F6E3E;
    --bs-primary-rgb: 116,160,89;
}
body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f7f9fc;
}
.sidebar {
    background: linear-gradient(180deg, var(--bs-primary-dark), var(--bs-primary));
    min-height: 100vh;
    color: #fff;
}
.sidebar a {
    color: #fff;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
}
.sidebar a:hover {
    background-color: rgba(255,255,255,0.1);
}
.card-metric {
    border-right: 6px solid var(--bs-primary);;
    border-radius: 8px;
    background: #fff;
    transition: 0.3s ease;
}
.card-metric:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.metric-icon {
    font-size: 1.8rem;
    color: var(--bs-primary);;
}
thead tr th {
    background-color: var(--bs-primary) !important;
    text-align: center !important;
    color: #ffffff !important;
}
.btn-primary{
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}
.btn-primary:hover{
    background-color: var(--bs-primary-dark) !important;
}
.active>.page-link, .page-link.active{
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}
.table>tbody {
    text-align: center;
}
.page-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bs-primary) !important;
    padding-bottom: 10px;
    margin-bottom: 40px;
}
.btn-group, .btn-group-vertical {
    direction: ltr;
}
