Spaces:
Sleeping
Sleeping
File size: 2,000 Bytes
f759742 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | /* ========================================
Admin Panel Styles
======================================== */
/* Auth Wall */
.admin-auth-wall {
min-height: 100vh;
background: linear-gradient(145deg, #0F172A 0%, #1E293B 100%);
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
}
.admin-auth-card {
background: white;
border-radius: 24px;
padding: 40px;
max-width: 460px;
width: 100%;
box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.admin-auth-header {
text-align: center;
margin-bottom: 28px;
}
.admin-shield {
font-size: 4rem;
margin-bottom: 16px;
display: block;
}
.admin-auth-header h1 {
font-size: 1.4rem;
color: #1E293B;
margin-bottom: 8px;
}
.admin-auth-header p {
font-size: 14px;
color: #64748B;
}
/* Admin Badge */
.admin-badge {
background: linear-gradient(135deg, #F59E0B, #EF4444);
color: white;
font-size: 11px;
font-weight: 800;
padding: 4px 12px;
border-radius: 20px;
letter-spacing: 0.08em;
}
/* User Tabs */
.user-tabs {
display: flex;
gap: 0;
border-bottom: 2px solid var(--border);
margin-bottom: 0;
}
.utab {
padding: 10px 20px;
background: none;
border: none;
font-size: 14px;
font-weight: 600;
color: var(--gray);
cursor: pointer;
border-bottom: 2px solid transparent;
margin-bottom: -2px;
font-family: var(--font);
transition: all 0.2s;
}
.utab.active {
color: var(--primary);
border-bottom-color: var(--primary);
}
.utab:hover:not(.active) {
color: var(--text);
background: var(--bg);
}
/* Live Session Row */
.live-session-row {
display: flex;
align-items: center;
gap: 14px;
padding: 12px 0;
border-bottom: 1px solid var(--border);
font-size: 14px;
}
.live-session-row:last-child {
border-bottom: none;
}
/* Section toggle */
.section {
display: none;
}
.section.active {
display: block;
}
.section.hidden {
display: none;
}
/* Form hint */
.form-hint {
font-size: 12px;
color: var(--gray);
margin-top: 4px;
}
|