/* ============================================
 KENTUNEZ - Auth Pages (Login / Sign Up)
 Split cover + card layout
 ============================================ */

/* ── Back to Home Link ── */
.auth-back-link {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 font-size: 0.82rem;
 font-weight: 500;
 color: var(--text-secondary, #a0a0a0);
 text-decoration: none;
 margin-bottom: 16px;
 transition: color 0.2s ease;
}
.auth-back-link:hover {
 color: var(--primary, #4DA8DA);
}
.auth-back-link svg {
 flex-shrink: 0;
}

/* ── Split Layout ── */
.auth-split {
 min-height: 100vh;
 display: flex;
 position: relative;
 padding-top: 88px;
 padding-bottom: 260px;
}

.auth-cover {
 position: fixed;
 inset: 0;
 width: 100vw;
 height: 100vh;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 z-index: 0;
}
.auth-cover::after {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(135deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.1) 100%);
}

.auth-card-panel {
 position: relative;
 z-index: 1;
 margin-left: 10%;
 margin-right: auto;
 display: flex;
 align-items: center;
 justify-content: flex-start;
 padding: 48px 60px;
 background: transparent;
 overflow-y: auto;
 min-height: 100vh;
 animation: fadeInPanel 0.6s ease-out;
}

.auth-card-panel.centered-auth-panel {
 width: 100%;
 margin-left: 0;
 justify-content: center;
 padding: 56px 24px;
}

@keyframes fadeInPanel {
 from { opacity: 0; transform: translateX(-30px); }
 to { opacity: 1; transform: translateX(0); }
}

.auth-card {
 width: 100%;
 max-width: 520px;
 background: rgba(255, 255, 255, 0.98);
 border-radius: 20px;
 padding: 44px 48px;
 box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35), 0 8px 24px rgba(0, 0, 0, 0.15);
 border: 1px solid rgba(255, 255, 255, 0.3);
 animation: slideUpCard 0.7s ease-out 0.1s both;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Landing-like header navigator for auth pages */
.landing-auth-header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 20;
 background: rgba(10, 10, 10, 0.78);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-auth-header .header-inner {
 max-width: 1240px;
 height: 72px;
 margin: 0 auto;
 padding: 0 18px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.landing-auth-logo {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 color: #fff;
 text-decoration: none;
 font-weight: 700;
}

.landing-auth-logo img {
 width: 34px;
 height: 34px;
 object-fit: contain;
}

.landing-auth-nav {
 display: flex;
 align-items: center;
 gap: 18px;
}

.landing-auth-nav a {
 color: #f3f4f6;
 text-decoration: none;
 font-size: 13px;
 font-weight: 600;
}

.landing-auth-nav a:hover {
 color: #4DA8DA;
}

/* Landing-like footer for auth pages */
.site-footer {
 position: fixed;
 left: 0;
 right: 0;
 bottom: 0;
 z-index: 10;
 background: rgba(255, 255, 255, 0.96);
 border-top: 1px solid #e5e7eb;
 backdrop-filter: blur(10px);
}

.site-footer .footer-container {
 max-width: 1240px;
 margin: 0 auto;
 padding: 14px 18px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 14px;
}

.site-footer .footer-left {
 display: flex;
 flex-direction: column;
 gap: 2px;
}

.site-footer .footer-logo {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 color: #0f172a;
 text-decoration: none;
 font-weight: 700;
}

.site-footer .footer-logo img {
 width: 24px;
 height: 24px;
}

.site-footer .footer-tagline,
.site-footer .footer-location {
 font-size: 11px;
 color: #6b7280;
}

.site-footer .footer-nav {
 display: flex;
 gap: 12px;
 flex-wrap: wrap;
 justify-content: center;
}

.site-footer .footer-nav a {
 font-size: 12px;
 color: #334155;
 text-decoration: none;
}

.site-footer .footer-nav a:hover {
 color: #0ea5e9;
}

@media (max-width: 980px) {
 .landing-auth-nav { display: none; }
 .site-footer .footer-container { flex-direction: column; align-items: flex-start; }
}

.auth-card--signup {
 max-width: 580px; /* Slightly wider for signup form */
}

.auth-card:hover {
 transform: translateY(-4px);
 box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4), 0 12px 32px rgba(0, 0, 0, 0.2);
}

@keyframes slideUpCard {
 from { opacity: 0; transform: translateY(20px); }
 to { opacity: 1; transform: translateY(0); }
}

.auth-card-head {
 text-align: center;
 margin-bottom: 28px;
}

.auth-card-logo {
 width: 48px;
 height: 48px;
 object-fit: contain;
 margin-bottom: 18px;
}

.auth-card-title {
 font-size: 1.65rem;
 font-weight: 800;
 color: #000;
 letter-spacing: -.03em;
 margin: 0 0 8px;
 line-height: 1.2;
}
.auth-card-title span { color: #4DA8DA; }

.auth-card-sub {
 font-size: .875rem;
 color: #64748b;
 margin: 0;
 line-height: 1.5;
}

/* ── Force light-mode for all auth form elements ── */
.auth-card .form-label {
 color: #000 !important;
 font-weight: 600;
}

.auth-card .form-input {
 background: #fff !important;
 color: #000 !important;
 border: 1.5px solid #d1d5db !important;
}

.auth-card .form-input::placeholder {
 color: #9ca3af !important;
}

.auth-card .form-input:focus {
 background: #fff !important;
 border-color: #4DA8DA !important;
 box-shadow: 0 0 0 3px rgba(77, 168, 218, 0.12) !important;
}

.auth-card select.form-input {
 background: #fff !important;
 color: #000 !important;
}

.auth-card .form-check span,
.auth-card .form-check label {
 color: #000 !important;
}

.auth-card .auth-form-options a {
 color: #4DA8DA !important;
}

.auth-card .auth-divider {
 color: #6b7280 !important;
}

.auth-card .auth-divider::before,
.auth-card .auth-divider::after {
 background: #d1d5db !important;
}

.auth-card .auth-switch {
 color: #374151 !important;
}

.auth-card .auth-switch a {
 color: #4DA8DA !important;
}

/* ── Provider Buttons ── */
.auth-providers {
 display: flex;
 flex-direction: column;
 gap: 10px;
 margin-bottom: 24px;
}

.auth-provider-btn {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 padding: 12px 16px;
 border: 1.5px solid #e2e8f0;
 border-radius: 10px;
 background: #fff;
 font-size: .9rem;
 font-weight: 600;
 color: #1e293b;
 cursor: pointer;
 transition: all .15s;
 font-family: inherit;
}
.auth-provider-btn:hover {
 background: #f8fafc;
 border-color: #cbd5e1;
 box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.auth-provider-btn:active { transform: scale(.98); }

.auth-provider-row {
 display: flex;
 gap: 10px;
}
.auth-provider-sm { flex: 1; }

/* ── Old Layout Compat (kept for signup maintenance page) ── */
.auth-wrapper {
 min-height: 100vh;
 display: flex;
}

/* Left Panel — Branding */
.auth-brand {
 flex: 0 0 420px;
 background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, var(--primary-dark) 100%);
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 padding: var(--space-10);
 color: var(--white);
 position: relative;
 overflow: hidden;
}

.auth-brand::before {
 content: '';
 position: absolute;
 width: 300px;
 height: 300px;
 border-radius: 50%;
 background: rgba(232, 97, 26, 0.08);
 top: -80px;
 right: -80px;
}

.auth-brand::after {
 content: '';
 position: absolute;
 width: 200px;
 height: 200px;
 border-radius: 50%;
 background: rgba(232, 97, 26, 0.06);
 bottom: -60px;
 left: -60px;
}

.auth-brand-logo {
 width: 72px;
 height: 72px;
 border-radius: 16px;
 object-fit: contain;
 margin-bottom: var(--space-6);
 z-index: 1;
 background: rgba(255,255,255,0.1);
 padding: 8px;
}

.auth-brand h1 {
 font-size: var(--font-2xl);
 font-weight: 700;
 letter-spacing: -0.02em;
 z-index: 1;
 margin-bottom: var(--space-2);
}

.auth-brand p {
 font-size: var(--font-sm);
 color: rgba(255,255,255,0.6);
 text-align: center;
 z-index: 1;
 max-width: 280px;
 line-height: 1.6;
}

.auth-brand-features {
 margin-top: var(--space-10);
 display: flex;
 flex-direction: column;
 gap: var(--space-4);
 z-index: 1;
}

.auth-brand-feature {
 display: flex;
 align-items: center;
 gap: var(--space-3);
 font-size: var(--font-sm);
 color: rgba(255,255,255,0.8);
}

.auth-brand-feature svg {
 flex-shrink: 0;
 color: var(--primary-light);
}

/* Right Panel — Form */
.auth-form-panel {
 flex: 1;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: var(--space-8);
 background: var(--white);
}

.auth-form-container {
 width: 100%;
 max-width: 380px;
}

.auth-form-header {
 margin-bottom: var(--space-8);
}

.auth-form-header h2 {
 font-size: var(--font-xl);
 font-weight: 700;
 color: var(--gray-900);
 margin-bottom: var(--space-1);
}

.auth-form-header p {
 font-size: var(--font-sm);
 color: var(--gray-500);
}

.auth-form {
 display: flex;
 flex-direction: column;
 gap: var(--space-4);
}

.auth-form .form-group {
 gap: var(--space-1);
}

.auth-form .form-label {
 font-size: var(--font-xs);
 font-weight: 500;
 color: var(--gray-600);
 text-transform: none;
 letter-spacing: 0;
}

.auth-form .form-input {
 padding: 0.625rem 0.75rem;
 font-size: var(--font-sm);
 border: 1px solid var(--gray-200);
 border-radius: var(--border-radius);
 background: var(--gray-50);
 transition: all var(--transition-fast);
}

.auth-form .form-input:focus {
 background: var(--white);
 border-color: var(--primary);
 box-shadow: 0 0 0 3px rgba(232, 97, 26, 0.08);
}

.auth-form .input-icon-wrap {
 position: relative;
}

.auth-form .input-icon-wrap .form-input {
 padding-left: 2.25rem;
}

.auth-form .input-icon {
 position: absolute;
 left: 0.75rem;
 top: 50%;
 transform: translateY(-50%);
 color: var(--gray-400);
 width: 16px;
 height: 16px;
}

.auth-form .input-icon-right {
 position: absolute;
 right: 0.75rem;
 top: 50%;
 transform: translateY(-50%);
 color: var(--gray-400);
 cursor: pointer;
 background: none;
 border: none;
 padding: 0;
}

.auth-form .input-icon-right:hover {
 color: var(--gray-600);
}

.auth-form-options {
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.auth-form-options a {
 font-size: var(--font-xs);
 color: var(--primary);
 font-weight: 500;
}

.auth-form-options a:hover { text-decoration: underline; }

.auth-submit {
 width: 100%;
 padding: 0.625rem;
 font-size: var(--font-sm);
 font-weight: 600;
 background: var(--primary);
 color: var(--white);
 border: none;
 border-radius: var(--border-radius);
 cursor: pointer;
 transition: all var(--transition-fast);
 display: flex;
 align-items: center;
 justify-content: center;
 gap: var(--space-2);
}

.auth-submit:hover { background: var(--primary-dark); }
.auth-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.auth-divider {
 display: flex;
 align-items: center;
 gap: var(--space-3);
 color: var(--gray-400);
 font-size: var(--font-xs);
}

.auth-divider::before,
.auth-divider::after {
 content: '';
 flex: 1;
 height: 1px;
 background: var(--gray-200);
}

.auth-social-buttons {
 display: flex;
 gap: var(--space-2);
}

.auth-social-btn {
 flex: 1;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: var(--space-2);
 padding: 0.5rem;
 border: 1px solid var(--gray-200);
 border-radius: var(--border-radius);
 font-size: var(--font-xs);
 color: var(--gray-700);
 background: var(--white);
 transition: all var(--transition-fast);
 font-weight: 500;
}

.auth-social-btn:hover {
 background: var(--gray-50);
 border-color: var(--gray-300);
}

.auth-switch {
 text-align: center;
 font-size: var(--font-xs);
 color: var(--gray-500);
 margin-top: var(--space-6);
}

.auth-switch a {
 color: var(--primary);
 font-weight: 600;
}

.auth-switch a:hover { text-decoration: underline; }

/* Password strength meter */
.password-strength {
 display: flex;
 gap: 4px;
 margin-top: var(--space-1);
}

.password-strength-bar {
 flex: 1;
 height: 3px;
 border-radius: 2px;
 background: var(--gray-200);
 transition: background var(--transition-fast);
}

.password-strength-bar.weak { background: var(--danger); }
.password-strength-bar.fair { background: var(--warning); }
.password-strength-bar.good { background: #84CC16; }
.password-strength-bar.strong { background: var(--success); }

.password-strength-text {
 font-size: var(--font-xs);
 margin-top: 2px;
}

/* Auth notification */
.auth-alert {
 padding: var(--space-3);
 border-radius: var(--border-radius);
 font-size: var(--font-xs);
 display: flex;
 align-items: center;
 gap: var(--space-2);
 margin-bottom: 12px;
}

.auth-alert-error { background: var(--danger-bg); color: var(--danger); }
.auth-alert-success { background: var(--success-bg); color: var(--success); }

/* Legal footer */
.auth-legal {
 text-align: center;
 font-size: 11px;
 color: #94a3b8;
 margin-top: 20px;
 line-height: 1.5;
}
.auth-legal a { color: #64748b; text-decoration: underline; }

/* ── Floating Footer ── */
.auth-footer {
 position: fixed;
 bottom: 24px;
 left: 50%;
 transform: translateX(-50%);
 z-index: 10;
 display: flex;
 align-items: center;
 gap: 24px;
 padding: 14px 28px;
 background: rgba(255, 255, 255, 0.12);
 backdrop-filter: blur(12px);
 border-radius: 50px;
 border: 1px solid rgba(255, 255, 255, 0.15);
 box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
 animation: fadeInUp 0.8s ease-out 0.3s both;
}

@keyframes fadeInUp {
 from { opacity: 0; transform: translateX(-50%) translateY(20px); }
 to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.auth-footer-link {
 color: rgba(255, 255, 255, 0.85);
 font-size: 13px;
 font-weight: 500;
 text-decoration: none;
 transition: color 0.2s, transform 0.2s;
 white-space: nowrap;
}

.auth-footer-link:hover {
 color: #fff;
 transform: translateY(-1px);
}

.auth-footer-dot {
 width: 4px;
 height: 4px;
 background: rgba(255, 255, 255, 0.4);
 border-radius: 50%;
}

.auth-footer-brand {
 display: flex;
 align-items: center;
 gap: 8px;
 color: #fff;
 font-size: 13px;
 font-weight: 600;
}

.auth-footer-brand img {
 width: 20px;
 height: 20px;
 border-radius: 4px;
}

@media (max-width: 640px) {
 .auth-footer {
 bottom: 16px;
 padding: 12px 20px;
 gap: 16px;
 }
 .auth-footer-link {
 font-size: 12px;
 }
 .auth-footer-brand span {
 display: none;
 }
}

/* ── Sticky Footer (White Background) ── */
.auth-footer-sticky {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 z-index: 100;
 background: #fff;
 border-top: 1px solid #e5e7eb;
 padding: 16px 24px;
 box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.auth-footer-content {
 max-width: 1200px;
 margin: 0 auto;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 24px;
}

.auth-footer-links {
 display: flex;
 align-items: center;
 gap: 8px;
}

.auth-footer-link {
 color: #6b7280;
 font-size: 13px;
 font-weight: 500;
 text-decoration: none;
 transition: color 0.2s;
}

.auth-footer-link:hover {
 color: #111827;
}

.auth-footer-divider {
 color: #d1d5db;
 font-size: 12px;
}

.auth-footer-copyright {
 color: #9ca3af;
 font-size: 12px;
 font-weight: 500;
}

@media (max-width: 640px) {
 .auth-footer-sticky {
 padding: 12px 16px;
 }
 .auth-footer-content {
 flex-direction: column;
 gap: 8px;
 text-align: center;
 }
 .auth-footer-links {
 flex-wrap: wrap;
 justify-content: center;
 }
}

/* ── Signup Steps ── */
.signup-steps {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 16px;
 margin-bottom: 28px;
}

.signup-step {
 display: flex;
 align-items: center;
 gap: 8px;
 opacity: 0.5;
 transition: opacity 0.3s;
}

.signup-step.active {
 opacity: 1;
}

.signup-step.completed {
 opacity: 0.8;
}

.step-number {
 width: 28px;
 height: 28px;
 border-radius: 50%;
 background: #e5e7eb;
 color: #6b7280;
 font-size: 13px;
 font-weight: 600;
 display: flex;
 align-items: center;
 justify-content: center;
}

.signup-step.active .step-number {
 background: #4DA8DA;
 color: #fff;
}

.signup-step.completed .step-number {
 background: #10b981;
 color: #fff;
}

.step-label {
 font-size: 13px;
 font-weight: 500;
 color: #6b7280;
}

.signup-step.active .step-label {
 color: #111827;
 font-weight: 600;
}

.signup-step-connector {
 width: 40px;
 height: 2px;
 background: #e5e7eb;
 border-radius: 1px;
}

/* ── Signup Step Content ── */
.signup-step-content {
 animation: fadeIn 0.3s ease-out;
}

.signup-step-content.hidden {
 display: none;
}

@keyframes fadeIn {
 from { opacity: 0; transform: translateX(10px); }
 to { opacity: 1; transform: translateX(0); }
}

/* ── Verification Section ── */
.verification-section {
 background: #f9fafb;
 border: 1px solid #e5e7eb;
 border-radius: 12px;
 padding: 20px;
 margin-bottom: 20px;
}

.verification-header {
 display: flex;
 align-items: center;
 gap: 8px;
 margin-bottom: 8px;
}

.verification-header span {
 font-size: 14px;
 font-weight: 600;
 color: #111827;
}

.verification-text {
 font-size: 13px;
 color: #6b7280;
 margin-bottom: 16px;
}

.verification-text strong {
 color: #111827;
}

.code-input-section {
 margin-top: 16px;
}

.code-inputs {
 display: flex;
 gap: 8px;
 margin-bottom: 12px;
}

.code-input {
 width: 44px;
 height: 48px;
 text-align: center;
 font-size: 18px;
 font-weight: 600;
 border: 1px solid #d1d5db;
 border-radius: 8px;
 background: #fff;
 transition: border-color 0.2s, box-shadow 0.2s;
}

.code-input:focus {
 outline: none;
 border-color: #4DA8DA;
 box-shadow: 0 0 0 3px rgba(77, 168, 218, 0.1);
}

.resend-text {
 font-size: 12px;
 color: #6b7280;
 text-align: center;
}

.resend-text a {
 color: #4DA8DA;
 font-weight: 500;
 text-decoration: none;
}

.resend-text a:hover {
 text-decoration: underline;
}

/* ── Success Message ── */
.signup-success {
 text-align: center;
 padding: 40px 20px;
 animation: fadeIn 0.5s ease-out;
}

.success-icon {
 margin-bottom: 20px;
}

.success-title {
 font-size: 24px;
 font-weight: 700;
 color: #111827;
 margin-bottom: 12px;
}

.success-message {
 font-size: 14px;
 color: #6b7280;
 margin-bottom: 28px;
}

/* ── Form Actions ── */
.form-actions {
 display: flex;
 gap: 12px;
}

.form-actions .auth-submit {
 flex: 1;
}

.auth-submit--outline {
 background: transparent;
 border: 1px solid #d1d5db;
 color: #374151;
}

.auth-submit--outline:hover {
 background: #f9fafb;
 border-color: #9ca3af;
}

.auth-submit--secondary {
 background: #f3f4f6;
 color: #374151;
}

.auth-submit--secondary:hover {
 background: #e5e7eb;
}

/* Responsive — floating card on background */
@media (max-width: 1200px) {
 .auth-card-panel { margin-left: 6%; padding: 40px 48px; }
}

@media (max-width: 1024px) {
 .auth-card-panel { margin-left: 4%; padding: 36px 40px; }
 .auth-card { padding: 40px 44px; }
}

@media (max-width: 768px) {
 .auth-split {
 padding-bottom: 120px; /* Extra space for footer on mobile */
 }
 .auth-card-panel {
 margin: 0;
 padding: 24px 20px 40px;
 width: 100%;
 justify-content: center;
 }
 .auth-card {
 max-width: 100%;
 width: 100%;
 padding: 28px 24px;
 border-radius: 16px;
 }
 .auth-card--signup {
 max-width: 100%;
 }
}

@media (max-width: 480px) {
 .auth-split {
 padding-bottom: 140px; /* More space for taller footer on small screens */
 }
 .auth-card-panel {
 padding: 16px 16px 32px;
 }
 .auth-card {
 padding: 24px 20px;
 border-radius: 12px;
 }
 .auth-card-title {
 font-size: 1.35rem;
 }
 .form-row {
 flex-direction: column;
 gap: 0;
 }
 .signup-steps {
 gap: 8px;
 }
 .step-label {
 font-size: 11px;
 }
 .signup-step-connector {
 width: 20px;
 }
}

@media (max-width: 480px) {
 .auth-card-panel { padding: 24px 18px; }
 .auth-card { padding: 28px 24px; border-radius: 20px; }
 .auth-card-title { font-size: 1.5rem; }
}

/* Old layout responsive (signup maintenance) */
@media (max-width: 900px) {
 .auth-brand { display: none; }
}

@media (max-width: 480px) {
 .auth-form-panel { padding: var(--space-5); }
 .auth-form-container { max-width: 100%; }
}

/* ======== Maintenance Card ======== */
.maintenance-card {
 text-align: center;
 max-width: 400px;
 padding: 48px 32px;
 background: #ffffff;
 border: 1px solid #e5e7eb;
 border-radius: 16px;
 box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}
.maintenance-icon {
 margin-bottom: 20px;
 animation: maint-pulse 2.5s ease-in-out infinite;
}
@keyframes maint-pulse {
 0%, 100% { opacity: 1; transform: scale(1); }
 50% { opacity: 0.7; transform: scale(1.05); }
}
.maintenance-title {
 font-size: 24px;
 font-weight: 800;
 color: #111;
 margin: 0 0 8px;
}
.maintenance-sub {
 font-size: 14px;
 color: #e74c3c;
 font-weight: 600;
 margin: 0 0 16px;
}
.maintenance-desc {
 font-size: 13px;
 color: #6b7280;
 line-height: 1.6;
 margin: 0 0 24px;
}
.maintenance-footer {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding-top: 20px;
 border-top: 1px solid #e5e7eb;
}
.maintenance-dot {
 width: 8px;
 height: 8px;
 border-radius: 50%;
 background: #f39c12;
 animation: maint-blink 1.2s ease-in-out infinite;
}
@keyframes maint-blink {
 0%, 100% { opacity: 1; }
 50% { opacity: 0.3; }
}
.maintenance-status {
 font-size: 12px;
 color: #6b7280;
 font-weight: 500;
}
