/* فایل استایل اصلی */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
}

body {
    font-family: 'Vazirmatn', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* استایل دکمه‌ها */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* استایل جداول */
.table th {
    border-top: none;
    font-weight: 600;
    color: #4b5563;
}

.table-hover tbody tr:hover {
    background-color: rgba(102, 126, 234, 0.05);
}

/* استایل کارت‌ها */
.stat-card {
    transition: all 0.3s;
}

.stat-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* استایل فرم‌ها */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

/* استایل ناوبری */
.nav-link {
    transition: all 0.3s;
}

/* استایل بدج */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* استایل موبایل */
@media (max-width: 768px) {
    .main-content {
        margin-right: 0;
    }
    
    .sidebar {
        position: relative;
        width: 100%;
        min-height: auto;
    }
    
    .stat-card {
        margin-bottom: 15px;
    }
}