:root {
    --admin-dash-grad: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
}

.admin-dashboard-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.shadow-premium {
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

[data-bs-theme="dark"] .shadow-premium {
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.admin-header-card {
    border-radius: 1rem;
    background: var(--admin-dash-grad);
    background-size: 300% 300%;
    animation: admin-gradient-shift 15s ease infinite;
    padding: 1.8rem 2rem;
    position: relative;
}

.admin-header-card .header-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, transparent 70%);
    animation: admin-glow-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 0.6rem;
    backdrop-filter: blur(10px);
}

.icon-wrapper i {
    font-size: 1.35rem;
    color: #fff;
}

.header-text {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.admin-welcome-display {
    background: rgba(255, 255, 255, 0.24);
    color: #fff !important;
    padding: 0.65rem 1.2rem !important;
    border-radius: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.summary-card,
.dashboard-card {
    border-radius: 1rem;
    background: var(--tblr-card-bg);
    border: 1px solid var(--tblr-border-color);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.summary-card:hover,
.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.summary-label {
    color: var(--tblr-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.82rem;
    font-weight: 700;
}

.summary-number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    background: var(--admin-dash-grad);
    background-size: 250% 250%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-card-header {
    background: var(--admin-dash-grad);
    background-size: 300% 300%;
    animation: admin-gradient-shift 15s ease infinite;
    border-bottom: none;
    padding: 1rem 1.2rem;
}

.dashboard-card .table thead {
    background: linear-gradient(to bottom, rgba(102, 126, 234, 0.08), rgba(102, 126, 234, 0.03));
}

.dashboard-card .table th {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border-bottom: 1px solid var(--tblr-border-color);
}

.dashboard-card .table td {
    border-bottom: 1px solid var(--tblr-border-color);
}

@keyframes admin-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes admin-glow-pulse {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 0.8; }
}
