/* Admin Specific Styles */
:root {
    --admin-bg: #0f111a;
    --sidebar-w: 250px;
}

body.admin-body {
    background: var(--admin-bg);
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, #1a1c2e, #0f111a);
}

.admin-glass {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.admin-sidebar {
    width: var(--sidebar-w);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: #0a0b10;
    border-right: 1px solid #1e293b;
    padding: 2rem 1rem;
    z-index: 1001;
}

.admin-main {
    margin-left: var(--sidebar-w);
    padding: 2rem;
    min-height: 100vh;
}

.stat-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #334155;
    transition: transform 0.3s ease;
}

.stat-card:hover { transform: translateY(-3px); }

.nav-link-admin {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.nav-link-admin i { margin-right: 12px; font-size: 1.1rem; }

.nav-link-admin:hover, .nav-link-admin.active {
    background: rgba(0, 229, 255, 0.15);
    color: var(--primary);
}

.table-glass {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.table-glass tr {
    background: rgba(30, 41, 59, 0.4);
    transition: 0.3s;
}
.table-glass td, .table-glass th { padding: 1rem; }
.table-glass th { color: var(--text-dim); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; }

/* Dashboard Mini-Icons */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
