/* =================================
   PROFESSIONAL ADMIN DASHBOARD
================================= */

.dashboard-container {
    max-width: 100% !important;
}

.dashboard-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #FFD700 !important;
    margin-bottom: 30px !important;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: #ffffff !important;
    border: 2px solid rgba(255, 215, 0, 0.4) !important;
    border-radius: 12px !important;
    padding: 26px !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
}

.stat-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 56px rgba(0,0,0,0.2) !important;
    border-color: #FFE066 !important;
}

.stat-label {
    font-size: 13px !important;
    color: #000 !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #FFD700 !important;
}

/* Section Titles */
.section-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #FFD700 !important;
    margin: 40px 0 20px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25) !important;
}

/* Cards */
.card {
    background: #ffffff !important;
    border: 1px solid rgba(255, 215, 0, 0.4) !important;
    border-radius: 12px !important;
    color: #000 !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15) !important;
}

.card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 56px rgba(0,0,0,0.2) !important;
}

.card-body {
    padding: 24px !important;
}

.card-header {
    background: rgba(255, 215, 0, 0.1) !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3) !important;
}

.card-title {
    color: #FFD700 !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    margin-bottom: 12px !important;
}

.card-text {
    color: #000 !important;
    line-height: 1.7 !important;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #F4B400 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 24px rgba(255,215,0,0.45) !important;
}

.btn-primary:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 28px rgba(255,215,0,0.55) !important;
    color: #ffffff !important;
}

.btn-secondary {
    background: #475569 !important;
    border: none !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    transition: all 0.3s ease !important;
}

.btn-secondary:hover {
    background: #334155 !important;
    color: #fff !important;
}

.btn-warning {
    background: linear-gradient(135deg, #FFD700 0%, #F4B400 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    transition: all 0.3s ease !important;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #FFD700 0%, #F4B400 100%) !important;
    transform: translateY(-1px) !important;
}

.btn-danger {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.btn-danger:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4) !important;
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%) !important;
}

.btn-info {
    background: linear-gradient(135deg, #0891B2 0%, #0E7490 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    transition: all 0.3s ease !important;
}

.btn-info:hover {
    background: linear-gradient(135deg, #0891B2 0%, #0E7490 100%) !important;
    transform: translateY(-1px) !important;
}

.btn-success {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    transition: all 0.3s ease !important;
}

.btn-success:hover {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%) !important;
    transform: translateY(-1px) !important;
}

/* Tables */
.table {
    color: #000 !important;
    background: #ffffff !important;
}

.table thead {
    background: #FFD700 !important;
}

.table thead th {
    color: #000 !important;
    font-weight: 700 !important;
    border-bottom: 2px solid rgba(255, 215, 0, 0.25) !important;
    padding: 14px !important;
}

.table tbody tr {
    background: #ffffff !important;
    transition: all 0.2s ease !important;
}

.table tbody tr:hover {
    background: rgba(255, 215, 0, 0.1) !important;
}

.table tbody td {
    padding: 14px !important;
    border-color: rgba(255, 215, 0, 0.15) !important;
    vertical-align: middle !important;
    color: #000 !important;
}

/* Alerts */
.alert {
    border-radius: 10px !important;
    border: 1px solid rgba(255, 215, 0, 0.4) !important;
    padding: 16px 24px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    background: #ffffff !important;
    color: #000 !important;
}

.alert-success { border-left: 4px solid #22c55e !important; color: #000 !important; }
.alert-danger   { border-left: 4px solid #ef4444 !important; color: #000 !important; }
.alert-warning  { border-left: 4px solid #FFD700 !important; color: #000 !important; }

/* Forms */
.form-label {
    color: #FFD700 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    margin-bottom: 8px !important;
}

.form-control, .form-select {
    background: #ffffff !important;
    border: 2px solid rgba(255,215,0,0.3) !important;
    border-radius: 12px !important;
    color: #000 !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    transition: all 0.2s ease !important;
}

.form-control:focus, .form-select:focus {
    background: #ffffff !important;
    border-color: #FFD700 !important;
    color: #000 !important;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2) !important;
}

.form-control::placeholder {
    color: #777 !important;
}

/* Badges */
.badge {
    padding: 6px 14px !important;
    font-weight: 700 !important;
    border-radius: 20px !important;
    font-size: 13px !important;
}

.badge-success {
    background: #16A34A !important;
    color: #fff !important;
}

.badge-warning {
    background: #FFD700 !important;
    color: #000 !important;
}

.badge-danger {
    background: #DC2626 !important;
    color: #fff !important;
}

.badge-primary {
    background: #2563EB !important;
    color: #fff !important;
}

.badge.bg-warning {
    background: #FFD700 !important;
    color: #000 !important;
}

.badge.bg-primary {
    background: #2563EB !important;
    color: #fff !important;
}

.badge.bg-success {
    background: #16A34A !important;
    color: #fff !important;
}

.badge.bg-danger {
    background: #DC2626 !important;
    color: #fff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-title {
        font-size: 24px !important;
    }
    
    .stat-value {
        font-size: 32px !important;
    }
    
    .section-title {
        font-size: 18px !important;
    }
}
