/**
 * استایل‌های اضافی برای پنل ادمین حقوق و دستمزد
 * Additional Admin Payroll Panel Styles
 */

/* استایل‌های کلی بخش مدیریت */
#admin-management-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid #dee2e6;
    position: relative;
    overflow: hidden;
}

#admin-management-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #2196F3, #FF9800);
}

/* هدر بخش مدیریت */
#admin-management-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #dee2e6;
}

#admin-management-section .section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

#admin-management-section .section-header h2 i {
    color: #4CAF50;
    font-size: 24px;
}

#admin-management-section .section-actions {
    display: flex;
    gap: 12px;
}

/* آمار مدیریتی */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.admin-stat-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-bg, linear-gradient(90deg, #4CAF50, #45a049));
}

.admin-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.admin-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background: var(--icon-bg, #4CAF50);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.admin-stat-card .stat-icon.employees {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    --gradient-bg: linear-gradient(90deg, #4CAF50, #45a049);
}

.admin-stat-card .stat-icon.payroll {
    background: linear-gradient(135deg, #2196F3, #1976d2);
    --gradient-bg: linear-gradient(90deg, #2196F3, #1976d2);
}

.admin-stat-card .stat-icon.pending {
    background: linear-gradient(135deg, #FF9800, #f57c00);
    --gradient-bg: linear-gradient(90deg, #FF9800, #f57c00);
}

.admin-stat-card .stat-icon.requests {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    --gradient-bg: linear-gradient(90deg, #9c27b0, #7b1fa2);
}

.admin-stat-card .stat-info {
    flex: 1;
}

.admin-stat-card .stat-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1;
}

.admin-stat-card .stat-info p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* فیلترهای کارمندان */
.employees-filters {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 180px;
}

.filter-group label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
    margin: 0;
}

.filter-group select,
.filter-group input {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* جدول کارمندان */
.employees-table-container {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid #e9ecef;
    margin-bottom: 32px;
}

.table-header {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.table-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.select-all-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

.select-all-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #fff;
}

.table-wrapper {
    overflow-x: auto;
}

.employees-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.employees-table thead {
    background: #f8f9fa;
}

.employees-table th {
    padding: 16px 12px;
    text-align: right;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

.employees-table th.check-column {
    width: 50px;
    text-align: center;
}

.employees-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.employees-table tr:hover {
    background: rgba(76, 175, 80, 0.05);
}

.employees-table .check-column {
    text-align: center;
}

.employees-table .check-column input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #4CAF50;
}

/* اطلاعات کارمند */
.employee-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.employee-info strong {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.employee-info small {
    color: #6c757d;
    font-size: 12px;
}

/* بج بخش */
.section-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.section-badge.section-management {
    background: #e3f2fd;
    color: #1976d2;
}

.section-badge.section-hr {
    background: #f3e5f5;
    color: #7b1fa2;
}

.section-badge.section-finance {
    background: #e8f5e8;
    color: #2e7d32;
}

.section-badge.section-it {
    background: #fff3e0;
    color: #f57c00;
}

.section-badge.section-sales {
    background: #fce4ec;
    color: #c2185b;
}

.section-badge.section-unknown {
    background: #f5f5f5;
    color: #757575;
}

/* مبلغ حقوق */
.salary-amount {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

/* وضعیت حقوق */
.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.calculated {
    background: #cce5ff;
    color: #004085;
}

.status-badge.approved {
    background: #d4edda;
    color: #155724;
}

/* دکمه‌های عملیات */
.action-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn-sm {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
}

.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-sm.btn-primary {
    background: #4CAF50;
    color: #fff;
}

.btn-sm.btn-primary:hover {
    background: #45a049;
}

.btn-sm.btn-info {
    background: #2196F3;
    color: #fff;
}

.btn-sm.btn-info:hover {
    background: #1976d2;
}

.btn-sm.btn-success {
    background: #28a745;
    color: #fff;
}

.btn-sm.btn-success:hover {
    background: #218838;
}

/* حالت بارگذاری */
.loading-row td {
    text-align: center;
    padding: 40px 20px;
}

.loading-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #6c757d;
    font-style: italic;
}

.loading-state i {
    color: #4CAF50;
    font-size: 18px;
}

/* استایل‌های جدول کارمندان */
.attendance-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 4px;
    min-width: 50px;
}

.stat-value {
    font-weight: 600;
    font-size: 12px;
    color: #2c3e50;
}

.stat-label {
    font-size: 10px;
    color: #6c757d;
    margin-top: 2px;
}

.salary-breakdown {
    text-align: center;
}

.net-salary {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.salary-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
}

.salary-details small {
    font-size: 10px;
    color: #6c757d;
}

.error-text {
    color: #dc3545;
    font-size: 12px;
    font-style: italic;
}

/* استایل‌های مودال جزئیات کارمند */
.employee-details-popup {
    direction: rtl !important;
    font-family: 'Vazirmatn', 'Tahoma', sans-serif !important;
}

.employee-details-modal {
    text-align: right;
}

.employee-header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
}

.employee-header h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
}

.employee-header p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

.details-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.details-tab {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.details-tab.active {
    color: #4CAF50;
    border-bottom-color: #4CAF50;
    font-weight: 600;
}

.details-tab:hover {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.details-content {
    min-height: 300px;
}

.details-section {
    display: none;
}

.details-section.active {
    display: block;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.info-item label {
    font-weight: 500;
    color: #495057;
    margin: 0;
}

.info-item span {
    font-weight: 600;
    color: #2c3e50;
}

.attendance-chart-container {
    height: 300px;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 16px;
}

.attendance-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.stat-card {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.stat-card p {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

.payroll-breakdown {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item.total {
    border-top: 2px solid #4CAF50;
    margin-top: 12px;
    padding-top: 16px;
    font-weight: 600;
    font-size: 16px;
}

.breakdown-item label {
    font-weight: 500;
    color: #495057;
    margin: 0;
}

.breakdown-item span {
    font-weight: 600;
}

.breakdown-item .positive {
    color: #28a745;
}

.breakdown-item .negative {
    color: #dc3545;
}

/* استایل‌های نوار پیشرفت */
.progress-container {
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

/* استایل‌های حالت بارگذاری */
.loading-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    color: #6c757d;
    font-style: italic;
}

.loading-state i {
    color: #4CAF50;
}

/* استایل‌های وضعیت محاسبه شده */
.status-badge.calculated {
    background: #e3f2fd;
    color: #1976d2;
}

.status-badge.paid {
    background: #e8f5e8;
    color: #2e7d32;
}

/* بهبود ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .attendance-stats {
        justify-content: center;
    }
    
    .stat-item {
        min-width: 60px;
    }
    
    .details-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .details-tab {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .attendance-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .breakdown-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .action-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-sm {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* انیمیشن‌های اضافی */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-stat-card,
.report-card,
.stat-card {
    animation: fadeInUp 0.5s ease forwards;
}

.admin-stat-card:nth-child(1) { animation-delay: 0.1s; }
.admin-stat-card:nth-child(2) { animation-delay: 0.2s; }
.admin-stat-card:nth-child(3) { animation-delay: 0.3s; }
.admin-stat-card:nth-child(4) { animation-delay: 0.4s; }

/* استایل‌های فیلتر پیشرفته */
.advanced-filters {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #dee2e6;
}

.filter-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    align-items: end;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.date-range-picker {
    display: flex;
    gap: 8px;
    align-items: center;
}

.date-range-picker input {
    width: 140px;
}

.filter-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

/* استایل‌های گزارش‌گیری پیشرفته */
.reports-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.export-options {
    display: flex;
    gap: 8px;
}

.chart-container {
    position: relative;
    height: 400px;
    margin-bottom: 20px;
}

.chart-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.chart-control-btn {
    padding: 6px 12px;
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.chart-control-btn.active {
    background: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}

.chart-control-btn:hover {
    background: #e9ecef;
}

/* استایل‌های جدول پیشرفته */
.advanced-table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.table-header {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.table-actions {
    display: flex;
    gap: 8px;
}

.table-search {
    position: relative;
    margin-bottom: 16px;
}

.table-search input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
}

.table-search i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.table-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.pagination-info {
    font-size: 14px;
    color: #6c757d;
}

.pagination-controls {
    display: flex;
    gap: 4px;
}

.pagination-btn {
    padding: 6px 12px;
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #e9ecef;
}

.pagination-btn.active {
    background: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* استایل‌های اعلان‌ها */
.notification-badge {
    position: relative;
    display: inline-block;
}


/* دکمه‌های اصلی پنل مدیریت */
.btn {
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn.btn-primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
}

.btn.btn-primary:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
}

.btn.btn-success {
    background: linear-gradient(135deg, #28a745, #218838);
    color: #fff;
}

.btn.btn-success:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
}

.btn.btn-info {
    background: linear-gradient(135deg, #2196F3, #1976d2);
    color: #fff;
}

.btn.btn-info:hover {
    background: linear-gradient(135deg, #1976d2, #1565c0);
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    #admin-management-section {
        padding: 20px;
        margin-top: 20px;
    }
    
    #admin-management-section .section-header {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        text-align: center;
    }
    
    #admin-management-section .section-header h2 {
        font-size: 24px;
        justify-content: center;
    }
    
    #admin-management-section .section-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .admin-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .admin-stat-card {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .admin-stat-card .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .admin-stat-card .stat-info h3 {
        font-size: 24px;
    }
    
    .employees-filters {
        flex-direction: column;
        gap: 16px;
    }
    
    .filter-group {
        min-width: auto;
        width: 100%;
    }
    
    .employees-table {
        font-size: 12px;
    }
    
    .employees-table th,
    .employees-table td {
        padding: 8px 6px;
    }
    
    .action-buttons {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .btn-sm {
        min-width: 32px;
        height: 32px;
        padding: 6px 8px;
    }
    
    .employee-info strong {
        font-size: 13px;
    }
    
    .employee-info small {
        font-size: 11px;
    }
    
    .section-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .salary-amount {
        font-size: 12px;
    }
    
    .status-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* انیمیشن‌های بهتر */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    50% {
        box-shadow: 0 12px 32px rgba(76, 175, 80, 0.2);
    }
}

.admin-stat-card {
    animation: slideInFromRight 0.6s ease forwards;
}

.admin-stat-card:nth-child(1) { animation-delay: 0.1s; }
.admin-stat-card:nth-child(2) { animation-delay: 0.2s; }
.admin-stat-card:nth-child(3) { animation-delay: 0.3s; }
.admin-stat-card:nth-child(4) { animation-delay: 0.4s; }

.employees-table-container {
    animation: slideInFromRight 0.6s ease forwards;
    animation-delay: 0.5s;
}

/* هاور افکت‌های بهتر */
.admin-stat-card:hover {
    animation: pulseGlow 2s infinite;
}

.employees-table tr:hover {
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.05), rgba(76, 175, 80, 0.1));
}

/* استایل‌های تم تیره (اختیاری) */
@media (prefers-color-scheme: dark) {
    #admin-management-section {
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        border-color: #34495e;
    }
    
    .admin-stat-card {
        background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
        border-color: #34495e;
    }
    
    .admin-stat-card .stat-info h3,
    .admin-stat-card .stat-info p {
        color: #ecf0f1;
    }
    
    .employees-filters {
        background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
        border-color: #34495e;
    }
    
    .filter-group label {
        color: #ecf0f1;
    }
    
    .employees-table-container {
        background: #2c3e50;
        border-color: #34495e;
    }
    
    .employees-table {
        background: #2c3e50;
        color: #ecf0f1;
    }
    
    .employees-table thead {
        background: #34495e;
    }
    
    .employees-table th {
        color: #ecf0f1;
        border-bottom-color: #34495e;
    }
    
    .employees-table td {
        border-bottom-color: #34495e;
    }
    
    .employees-table tr:hover {
        background: rgba(76, 175, 80, 0.1);
    }
}
