/**
 * SharpShield Admin Portal - Modern Dark Theme
 * Professional CRM Interface
 */

/* ============================================================================
   CSS VARIABLES
   ============================================================================ */
:root {
    /* Colors - SharpShield Brand - Navy + Gold (2 Nuancen heller) */
    --bg-primary: #162038;
    --bg-secondary: #1A2540;
    --bg-tertiary: #223A5C;
    --bg-card: #1A2540;
    --bg-hover: #223A5C;
    --bg-darker: #121A2E;

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text: #f8fafc;
    --card-bg: #1A2540;

    /* Primary - Gold Accent */
    --primary-gold: #C9A227;
    --primary-gold-light: #D4AF37;
    --primary-gold-dark: #A88B1E;

    /* Accent - Gold */
    --accent: #C9A227;
    --accent-hover: #D4AF37;
    --accent-dim: rgba(201, 162, 39, 0.15);

    --success: #22c55e;
    --warning: #D4A537;
    --danger: #ef4444;
    --info: #C9A227;

    --border: rgba(148, 163, 184, 0.15);
    --border-light: rgba(148, 163, 184, 0.08);

    /* Shadows */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(201, 162, 39, 0.2);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --sidebar-width: 260px;
    --header-height: 64px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;

    /* Border Radius */
    --radius: 8px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

/* ============================================================================
   BASE STYLES
   ============================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body.admin-portal {
    font-family: var(--font-sans);
    background:
        /* Gold Schimmer */
        radial-gradient(ellipse 80% 50% at 20% 10%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 85% 40%, rgba(201, 162, 39, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse 70% 45% at 15% 75%, rgba(201, 162, 39, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse 50% 35% at 50% 50%, rgba(201, 162, 39, 0.04) 0%, transparent 40%),
        #162038;
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-hover);
}

/* ============================================================================
   LOGIN SCREEN
   ============================================================================ */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(201, 162, 39, 0.05) 0%, rgba(201, 162, 39, 0.03) 30%, transparent 60%);
    animation: pulse-bg 15s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.login-logo img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 15px rgba(201, 162, 39, 0.3));
}

.login-logo .logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
}

.login-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.login-form .form-group {
    margin-bottom: 1.25rem;
}

.login-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.login-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.login-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.login-form input::placeholder {
    color: var(--text-muted);
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.login-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================================================
   APP LAYOUT
   ============================================================================ */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 100;
    transition: transform var(--transition-normal);
}

.sidebar.collapsed {
    transform: translateX(-100%);
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-logo img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 10px rgba(201, 162, 39, 0.25));
}

.sidebar-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.nav-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.nav-item.active {
    background: var(--accent-dim);
    color: var(--accent);
    border-left-color: var(--accent);
}

.nav-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.nav-divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 1.5rem;
}

.sidebar-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
}

/* Sidebar Language Section */
.sidebar-lang-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-lang-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.admin-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.admin-details {
    flex: 1;
    min-width: 0;
}

.admin-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-role {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: capitalize;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sidebar.collapsed + .main-content,
body.sidebar-collapsed .main-content {
    margin-left: 0;
}

/* Header */
.header {
    height: var(--header-height);
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidebar-toggle {
    display: none;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    align-items: center;
    justify-content: center;
}

.sidebar-toggle:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
}

.sidebar-toggle svg {
    width: 20px;
    height: 20px;
}

#page-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box input {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.625rem 1rem;
    color: var(--text-primary);
    width: 240px;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent);
    width: 300px;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

/* Header Language Switcher */
.header-lang-switcher {
    display: flex;
    align-items: center;
}

.header-lang-switcher select {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.5rem 0.75rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.header-lang-switcher select:hover {
    border-color: var(--accent);
}

.header-lang-switcher select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-glow);
}

/* Page Content */
.page-content {
    flex: 1;
    padding: 1.5rem;
    background: var(--bg-primary);
}

/* ============================================================================
   BUTTONS - Modern Design
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn:disabled::before {
    display: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-gold-dark) 100%);
    color: #0E1628;
    box-shadow:
        0 4px 15px rgba(201, 162, 39, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(201, 162, 39, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.35);
}

.btn-danger:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.45);
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.35);
}

.btn-success:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.45);
}

.btn-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.btn-warning:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
}

.btn-sm {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    border-radius: 10px;
    min-height: 40px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 14px;
}

.btn-block {
    width: 100%;
}

.btn-icon {
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
}

.btn-icon.btn-sm {
    padding: 0.5rem;
    min-width: 36px;
    min-height: 36px;
}

/* ============================================================================
   CARDS
   ============================================================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

.link-small {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.link-small:hover {
    color: var(--accent);
}

/* ============================================================================
   DASHBOARD
   ============================================================================ */
.dashboard {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-fast);
    min-height: 100px;
}

.stat-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    font-size: 1.75rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border-radius: var(--radius-md);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.stat-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--accent);
    margin-top: 0.25rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Quick Actions */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.quick-action-btn:hover {
    background: var(--accent-dim);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.quick-action-btn.secondary {
    background: transparent;
}

.quick-action-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    font-weight: 700;
}

.quick-action-btn.secondary .quick-action-icon {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

.quick-action-label {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Pipeline */
.pipeline-stages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pipeline-stage {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 0.25rem 1rem;
    align-items: center;
}

.pipeline-count {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-mono);
    grid-row: span 2;
}

.pipeline-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pipeline-bar {
    height: 4px;
    border-radius: 2px;
    min-width: 4px;
    max-width: 100%;
}

/* Activity */
.activity-list {
    display: flex;
    flex-direction: column;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-light);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 50%;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.activity-icon.success {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.activity-icon.danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

.activity-icon.muted {
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.activity-text strong {
    color: var(--text-primary);
}

.activity-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Tasks */
.task-list {
    display: flex;
    flex-direction: column;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.task-item:hover {
    background: var(--bg-hover);
}

.task-priority {
    width: 4px;
    height: 32px;
    border-radius: 2px;
    background: var(--text-muted);
}

.task-priority.low { background: var(--info); }
.task-priority.medium { background: var(--warning); }
.task-priority.high { background: #f97316; }
.task-priority.urgent { background: var(--danger); }

.task-content {
    flex: 1;
    min-width: 0;
}

.task-title {
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.task-due {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.125rem;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.empty-state-small {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================================================
   FORMS - Modern Dark Theme
   ============================================================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group label .required {
    color: #ef4444;
    margin-left: 3px;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="datetime-local"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px;
}

.form-control:hover,
input:hover,
select:hover,
textarea:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(201, 162, 39, 0.05);
    box-shadow:
        0 0 0 3px rgba(201, 162, 39, 0.15),
        0 0 20px rgba(201, 162, 39, 0.1);
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Input with icon */
.input-with-icon {
    position: relative;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    pointer-events: none;
}

.input-with-icon input {
    padding-left: 48px;
}

/* Select styling */
select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' fill-opacity='0.5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

select option {
    background: #1a2332;
    color: #fff;
    padding: 12px;
}

/* Textarea */
textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

/* Checkbox and Radio styling */
.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 14px;
    border-radius: 10px;
    transition: background 0.2s;
}

.checkbox-label:hover,
.radio-label:hover {
    background: rgba(255, 255, 255, 0.03);
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    cursor: pointer;
}

/* Form row for side-by-side fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Input validation states */
.form-control.is-valid,
input.is-valid {
    border-color: #22c55e;
}

.form-control.is-valid:focus,
input.is-valid:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.form-control.is-invalid,
input.is-invalid {
    border-color: #ef4444;
}

.form-control.is-invalid:focus,
input.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-hint {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin-top: 6px;
}

/* ============================================================================
   TABLES
   ============================================================================ */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: var(--bg-secondary);
}

.data-table tbody tr {
    transition: background var(--transition-fast);
}

.data-table tbody tr:hover {
    background: var(--bg-hover);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================================================
   BADGES
   ============================================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

.badge-success {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

.badge-info {
    background: rgba(201, 162, 39, 0.15);
    color: var(--info);
}

.badge-primary {
    background: var(--accent-dim);
    color: var(--accent);
}

/* ============================================================================
   PAGE HEADER
   ============================================================================ */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.page-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-group {
    display: flex;
    gap: 0.75rem;
}

.filter-group select {
    min-width: 150px;
}

/* ============================================================================
   LOADING & SKELETON
   ============================================================================ */
.skeleton {
    background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-tertiary) 50%, var(--bg-secondary) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-md);
    min-height: 100px;
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
    min-height: 1rem;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-muted);
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* On mobile: hidden by default, visible when .mobile-open is added */
    .sidebar {
        position: fixed;
        z-index: 100;
        height: 100vh;
        width: 280px;
        max-width: 85vw;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.mobile-open {
        transform: translateX(0);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    }

    /* Also handle collapsed class for compatibility */
    .sidebar.collapsed {
        transform: translateX(-100%);
    }

    .main-content {
        margin-left: 0 !important;
    }

    .sidebar-toggle {
        display: flex;
    }

    /* Better touch targets for nav items */
    .sidebar-nav {
        padding: 1.5rem 0;
    }

    .nav-item {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
        margin: 0.25rem 0.75rem;
        border-radius: var(--radius-md);
        border-left: none;
    }

    .nav-item.active {
        border-left: none;
        background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.1));
        border: 1px solid rgba(201, 162, 39, 0.3);
    }

    .nav-icon {
        width: 28px;
        font-size: 1.35rem;
    }

    .nav-divider {
        margin: 1.25rem 1.5rem;
    }

    .header {
        padding: 0.75rem 1rem;
    }

    .header-right {
        gap: 0.5rem;
    }

    .search-box {
        display: none;
    }

    .page-content {
        padding: 1rem;
    }

    .page-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .page-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .page-actions .btn {
        flex: 1;
        min-width: 140px;
    }

    .dashboard-sidebar {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .data-table {
        display: block;
        overflow-x: auto;
    }

    .data-table th,
    .data-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .activity-item {
        padding: 0.75rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Sidebar footer mobile */
    .sidebar-footer {
        padding: 1.25rem;
    }

    .admin-info {
        padding: 1rem;
        background: var(--bg-tertiary);
        border-radius: var(--radius-md);
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .login-header h1 {
        font-size: 1.25rem;
    }

    .page-content {
        padding: 0.75rem;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .page-title {
        font-size: 1.25rem;
    }

    .data-table th,
    .data-table td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .page-actions {
        flex-direction: column;
    }

    .page-actions .btn {
        width: 100%;
    }
}

/* ============================================================================
   ENHANCED MOBILE STYLES FOR ALL PAGES
   ============================================================================ */
@media (max-width: 768px) {
    /* Mobile overlay background when sidebar is open */
    .app-container::before {
        content: '';
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 90;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .sidebar.mobile-open ~ .main-content::before {
        content: '';
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 90;
        pointer-events: auto;
    }

    /* Force sidebar visibility on mobile-open */
    .sidebar.mobile-open {
        transform: translateX(0) !important;
        z-index: 1000 !important;
    }

    /* Filter sections mobile optimization */
    .filter-section {
        flex-direction: column;
        gap: 0.75rem;
    }

    .filter-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .filter-row select,
    .filter-row input {
        width: 100%;
        min-width: unset;
    }

    .filter-group {
        flex-direction: column;
        width: 100%;
    }

    .filter-group select {
        width: 100%;
        min-width: unset;
    }

    /* Cards mobile optimization */
    .card {
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .card-title {
        font-size: 1rem;
    }

    /* Lead/Customer cards grid */
    .lead-cards,
    .customer-cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .lead-card,
    .customer-card {
        padding: 1rem;
    }

    /* Form fields */
    .form-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-group {
        width: 100%;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px;
        min-height: 44px;
    }

    /* Pipeline view */
    .pipeline-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    .pipeline-columns {
        display: flex;
        gap: 0.75rem;
        min-width: max-content;
    }

    .pipeline-column {
        min-width: 280px;
        max-width: 280px;
    }

    /* Activity timeline */
    .activity-list {
        padding-left: 0;
    }

    .activity-item {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .activity-time {
        font-size: 0.75rem;
    }

    /* Modal mobile full-screen */
    .modal-content {
        margin: 0.5rem;
        max-height: calc(100vh - 1rem);
        border-radius: var(--radius-lg);
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-footer {
        padding: 1rem;
        flex-direction: column-reverse;
        gap: 0.5rem;
    }

    .modal-footer .btn {
        width: 100%;
    }

    /* Table responsive improvements */
    .data-table-wrapper {
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Action buttons in tables */
    .action-buttons {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .action-btn {
        padding: 0.5rem;
    }

    /* Pagination mobile */
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }

    .pagination-btn {
        padding: 0.5rem 0.75rem;
        min-width: 36px;
    }

    /* Subscription/Invoice cards */
    .subscription-card,
    .invoice-card {
        padding: 1rem;
    }

    .subscription-details,
    .invoice-details {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    /* Ticket view */
    .ticket-detail {
        flex-direction: column;
    }

    .ticket-sidebar {
        width: 100%;
        order: 2;
    }

    .ticket-main {
        order: 1;
    }

    .ticket-messages {
        max-height: 40vh;
    }

    /* Task board */
    .task-board {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .task-columns {
        display: flex;
        gap: 0.75rem;
        min-width: max-content;
    }

    .task-column {
        min-width: 280px;
        max-width: 280px;
    }

    /* Charts and graphs */
    .chart-container {
        height: 200px;
    }

    /* Empty states */
    .empty-state {
        padding: 2rem 1rem;
    }

    .empty-state svg {
        width: 48px;
        height: 48px;
    }

    .empty-state h3 {
        font-size: 1rem;
    }

    /* Toast notifications */
    .toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}

/* Ensure sidebar toggle is always visible and touchable on mobile */
@media (max-width: 768px) {
    .sidebar-toggle {
        display: flex !important;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }

    /* Better touch targets */
    .btn {
        min-height: 44px;
    }

    input, select, textarea {
        min-height: 44px;
    }

    .nav-item {
        min-height: 48px;
    }
}

/* ============================================================================
   PAGE-SPECIFIC MOBILE STYLES
   ============================================================================ */

/* Customers Page Mobile */
@media (max-width: 768px) {
    .customers-header,
    .leads-header,
    .tickets-header,
    .tasks-header,
    .admins-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .filter-bar {
        flex-direction: column;
        gap: 0.75rem;
    }

    .filter-bar input,
    .filter-bar select {
        width: 100%;
    }

    .filter-bar .btn {
        width: 100%;
    }

    /* Customer/Lead Cards */
    .customer-card,
    .lead-card {
        padding: 1rem;
    }

    .customer-info,
    .lead-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .customer-avatar,
    .lead-avatar {
        width: 48px;
        height: 48px;
    }

    .customer-details,
    .lead-details {
        width: 100%;
    }

    .customer-actions,
    .lead-actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .customer-actions .btn,
    .lead-actions .btn {
        flex: 1;
        min-width: 100px;
    }

    /* Stats row in pages */
    .page-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .page-stats .stat-card {
        padding: 1rem;
    }

    /* Lead Pipeline Mobile */
    .pipeline-wrapper {
        margin: 0 -1rem;
        padding: 0 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pipeline-stages {
        display: flex;
        gap: 0.75rem;
        min-width: max-content;
        padding-bottom: 1rem;
    }

    .pipeline-stage {
        min-width: 280px;
        max-width: 280px;
    }

    /* Tickets Mobile */
    .ticket-list {
        gap: 0.75rem;
    }

    .ticket-item {
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .ticket-priority,
    .ticket-status {
        align-self: flex-start;
    }

    .ticket-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Tasks Mobile */
    .task-list {
        gap: 0.5rem;
    }

    .task-item {
        padding: 0.875rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .task-checkbox {
        order: 0;
    }

    .task-content {
        width: 100%;
        order: 1;
    }

    .task-actions {
        width: 100%;
        order: 2;
        display: flex;
        gap: 0.5rem;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .task-actions .btn {
        flex: 1;
    }

    /* Admin Users Mobile */
    .admin-list {
        gap: 0.75rem;
    }

    .admin-item {
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .admin-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .admin-avatar {
        width: 40px;
        height: 40px;
    }

    .admin-role {
        font-size: 0.75rem;
    }

    .admin-actions {
        width: 100%;
        display: flex;
        gap: 0.5rem;
    }

    .admin-actions .btn {
        flex: 1;
    }

    /* Detail Views Mobile */
    .detail-header {
        flex-direction: column;
        gap: 1rem;
    }

    .detail-sidebar {
        width: 100%;
        order: 2;
    }

    .detail-main {
        width: 100%;
        order: 1;
    }

    /* Notes Section Mobile */
    .notes-section {
        margin-top: 1rem;
    }

    .note-item {
        padding: 0.875rem;
    }

    .note-header {
        flex-direction: column;
        gap: 0.25rem;
    }

    /* Invoice Mobile */
    .invoice-header {
        flex-direction: column;
        gap: 1rem;
    }

    .invoice-items {
        overflow-x: auto;
    }

    .invoice-totals {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-stats {
        grid-template-columns: 1fr;
    }

    .pipeline-stage {
        min-width: 260px;
        max-width: 260px;
    }

    .customer-actions .btn,
    .lead-actions .btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

/* ============================================================================
   SYSTEM GUARDIAN STYLES
   ============================================================================ */

/* System Guardian Card */
.system-guardian-card {
    margin-top: 1.5rem;
}

.system-guardian-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.system-guardian-card .header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* System Resources Grid */
.system-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .system-resources-grid {
        grid-template-columns: 1fr;
    }
}

/* Resource Card */
.resource-card {
    background: var(--bg-tertiary);
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.resource-card.normal {
    border-color: var(--success);
    border-color: rgba(34, 197, 94, 0.3);
}

.resource-card.warning {
    border-color: var(--warning);
    background: rgba(212, 165, 55, 0.05);
}

.resource-card.critical,
.resource-card.emergency {
    border-color: var(--danger);
    background: rgba(239, 68, 68, 0.05);
    animation: pulse-danger 2s infinite;
}

@keyframes pulse-danger {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

.resource-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.resource-icon {
    color: var(--text-muted);
}

.resource-name {
    font-weight: 500;
    color: var(--text-secondary);
}

.resource-value {
    margin-left: auto;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Resource Bar */
.resource-bar {
    position: relative;
    height: 8px;
    background: var(--bg-primary);
    border-radius: 4px;
    overflow: visible;
    margin-bottom: 0.75rem;
}

.resource-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.resource-fill.resource-normal {
    background: linear-gradient(90deg, var(--success), #34d399);
}

.resource-fill.resource-warning {
    background: linear-gradient(90deg, var(--warning), #f59e0b);
}

.resource-fill.resource-critical {
    background: linear-gradient(90deg, var(--danger), #f87171);
}

/* Threshold Markers */
.threshold-marker {
    position: absolute;
    top: -4px;
    width: 2px;
    height: 16px;
    transform: translateX(-50%);
}

.threshold-marker.warning {
    background: var(--warning);
    opacity: 0.5;
}

.threshold-marker.critical {
    background: var(--danger);
    opacity: 0.5;
}

/* Resource Details */
.resource-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.resource-details .free {
    color: var(--success);
}

/* Auto Cleanup Status */
.auto-cleanup-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.cleanup-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cleanup-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.last-cleanup,
.total-freed {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Docker Resources */
.docker-resources {
    margin-bottom: 1.5rem;
}

.docker-resources h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.docker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.docker-item {
    background: var(--bg-tertiary);
    padding: 0.75rem;
    border-radius: 0.375rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.docker-type {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: capitalize;
}

.docker-size {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.docker-reclaimable {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* System Alerts */
.system-alerts {
    margin-top: 1rem;
}

.system-alerts h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.system-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--border);
}

.system-alert.warning {
    border-left-color: var(--warning);
    background: rgba(212, 165, 55, 0.05);
}

.system-alert.critical,
.system-alert.emergency {
    border-left-color: var(--danger);
    background: rgba(239, 68, 68, 0.05);
}

.system-alert .alert-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.system-alert.warning .alert-icon {
    color: var(--warning);
}

.system-alert.critical .alert-icon,
.system-alert.emergency .alert-icon {
    color: var(--danger);
}

.system-alert .alert-content {
    flex: 1;
}

.system-alert .alert-content strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.system-alert .alert-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

.system-alert .auto-action {
    display: block;
    font-size: 0.75rem;
    color: var(--success);
    margin-top: 0.25rem;
}
