/* css/admin-styles.css - SecureFlow Super Admin Modern Glassmorphism Theme */

:root {
    --bg-dark: #090d16;
    --card-bg: rgba(15, 23, 42, 0.75);
    --border-subtle: rgba(51, 65, 85, 0.4);
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.25);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #e2e8f0;
    min-height: 100vh;
}

/* Glassmorphism Cards */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.glass-panel:hover {
    border-color: rgba(71, 85, 105, 0.6);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #090d16;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Nav Tabs */
.sidebar-link {
    display: flex;
    items-center: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #94a3b8;
    transition: all 0.2s ease;
    cursor: pointer;
}
.sidebar-link:hover {
    color: #ffffff;
    background: rgba(30, 41, 59, 0.8);
}
.sidebar-link.active {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
}

/* Plan Badges */
.badge-plan-basica {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.badge-plan-estandar {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.badge-plan-premium {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* Status Badges */
.badge-status-activa {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.badge-status-prueba {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
}
.badge-status-suspendida {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.badge-status-vencida {
    background: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

/* Tab Contents */
.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.tab-content.active {
    display: block;
    opacity: 1;
}

/* Copy License Feedback */
.btn-copy-license:active {
    transform: scale(0.95);
}
