/* ── Reset & Variables ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(255 255 255 / .04);
    --bg-card-hover: rgba(255 255 255 / .07);
    --bg-glass: rgba(255 255 255 / .05);
    --border: rgba(255 255 255 / .08);
    --border-light: rgba(255 255 255 / .12);
    --text-primary: #f0f0f5;
    --text-secondary: #8888a0;
    --text-muted: #55556a;
    --accent: #6366f1;
    --accent-hover: #818cf8;
    --accent-glow: rgba(99 102 241 / .25);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #6366f1;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-sm: 8px;
    --sidebar-width: 260px;
    --sidebar-collapsed: 72px;
    --topbar-height: 64px;
    --transition: .2s cubic-bezier(.4, 0, .2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { font-size: 15px; }

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

/* ── Login Page ────────────────────────────────────────── */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.login-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -200px; left: -100px;
}

.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    bottom: -150px; right: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(.95); }
}

.login-card {
    position: relative;
    z-index: 1;
    background: rgba(18 18 26 / .8);
    backdrop-filter: blur(40px) saturate(1.5);
    -webkit-backdrop-filter: blur(40px) saturate(1.5);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow:
        0 0 0 1px rgba(255 255 255 / .05),
        0 20px 60px rgba(0 0 0 / .5),
        0 0 100px rgba(99 102 241 / .1);
    animation: cardIn .6s cubic-bezier(.16, 1, .3, 1);
}

@keyframes cardIn {
    from { opacity: 0; transform: translateY(20px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

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

.login-logo {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--accent), #ec4899);
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: .75rem;
    box-shadow: 0 8px 32px var(--accent-glow);
}

.login-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

.login-header p {
    color: var(--text-secondary);
    font-size: .875rem;
    margin-top: .25rem;
}

/* ── Forms ─────────────────────────────────────────────── */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.form-group label i { font-size: .75rem; }

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: .75rem 1rem;
    background: rgba(255 255 255 / .05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: .935rem;
    transition: var(--transition);
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: rgba(255 255 255 / .07);
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* ── Toggle Switch ─────────────────────────────────────── */
.toggle {
    display: flex;
    align-items: center;
    gap: .75rem;
    cursor: pointer;
    user-select: none;
}

.toggle input { display: none; }

.toggle-slider {
    width: 44px; height: 24px;
    background: rgba(255 255 255 / .1);
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    background: var(--text-secondary);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle input:checked + .toggle-slider {
    background: var(--accent);
}

.toggle input:checked + .toggle-slider::after {
    transform: translateX(20px);
    background: white;
}

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

/* ── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .625rem 1.25rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 24px var(--accent-glow);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border);
}

.btn-ghost:hover {
    background: rgba(255 255 255 / .05);
    color: var(--text-primary);
    border-color: var(--border-light);
}

.btn-full { width: 100%; justify-content: center; }

.btn-sm {
    padding: .4rem .85rem;
    font-size: .8rem;
}

/* ── Alerts ────────────────────────────────────────────── */
.alert {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .875rem 1rem;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    animation: slideDown .3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.alert-error {
    background: rgba(239 68 68 / .12);
    border: 1px solid rgba(239 68 68 / .25);
    color: #fca5a5;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -.02em;
}

.logo i {
    font-size: 1.25rem;
    color: var(--accent);
}

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: .25rem;
    font-size: .875rem;
    transition: var(--transition);
    border-radius: 6px;
}

.sidebar-toggle:hover {
    color: var(--text-primary);
    background: rgba(255 255 255 / .05);
}

.nav-links {
    list-style: none;
    flex: 1;
    padding: .75rem .5rem;
    overflow-y: auto;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .625rem .875rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: .9rem;
    font-weight: 450;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--text-primary);
    background: rgba(255 255 255 / .05);
}

.nav-links li a.active {
    color: var(--text-primary);
    background: rgba(99 102 241 / .12);
}

.nav-links li a.active i { color: var(--accent); }

.nav-links li a i {
    width: 20px;
    text-align: center;
    font-size: .9rem;
}

.nav-links .disabled-link {
    opacity: .4;
    pointer-events: none;
}

.nav-section {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    padding: 1.25rem .875rem .375rem;
}

.badge {
    font-size: .65rem;
    font-weight: 600;
    padding: .15rem .5rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.badge-info {
    background: rgba(99 102 241 / .15);
    color: var(--accent-hover);
}

.badge-primary {
    background: rgba(99 102 241 / .15);
    color: var(--accent-hover);
}

.badge-default {
    background: rgba(255 255 255 / .05);
    color: var(--text-secondary);
}

.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-info {
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 0;
}

.avatar {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--accent), #ec4899);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .85rem;
    color: white;
    flex-shrink: 0;
}

.avatar-sm { width: 30px; height: 30px; font-size: .75rem; border-radius: 8px; }

.user-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.user-name {
    font-size: .85rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role {
    font-size: .7rem;
    color: var(--text-muted);
}

.logout-btn {
    color: var(--text-muted);
    padding: .5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.logout-btn:hover {
    color: var(--danger);
    background: rgba(239 68 68 / .1);
}

/* ── Main Content ──────────────────────────────────────── */
.content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: var(--transition);
}

.topbar {
    height: var(--topbar-height);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    background: rgba(10 10 15 / .8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.page-title {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -.01em;
    flex: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: .25rem;
}

.page-content {
    padding: 2rem;
}

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

.card:hover {
    border-color: var(--border-light);
}

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

.card-header h2 {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.card-header h2 i { color: var(--accent); }

.card-body {
    padding: 1.5rem;
}

/* ── Dashboard Stats ───────────────────────────────────── */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.stat-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.stat-icon {
    width: 48px; height: 48px;
    background: rgba(99 102 241 / .1);
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
}

.stat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

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

/* ── Feature Grid ──────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-item {
    padding: 1.25rem;
    background: rgba(255 255 255 / .02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255 255 255 / .04);
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, rgba(99 102 241 / .15), rgba(236 72 153 / .1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent-hover);
    margin-bottom: .75rem;
}

.feature-item h3 {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .25rem;
}

.feature-item p {
    font-size: .8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ── Table ─────────────────────────────────────────────── */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead th {
    padding: .875rem 1.25rem;
    text-align: left;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.table tbody td {
    padding: .875rem 1.25rem;
    font-size: .9rem;
    border-bottom: 1px solid var(--border);
}

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

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

.table tbody tr:hover {
    background: rgba(255 255 255 / .02);
}

.user-cell {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 500;
}

.status-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    margin-right: .4rem;
}

.status-active { background: var(--success); box-shadow: 0 0 8px rgba(16 185 129 / .4); }
.status-inactive { background: var(--text-muted); }

/* ── Orders Table ──────────────────────────────────────── */
.table-orders { min-width: 1200px; }

.table-orders thead th {
    padding: .7rem .75rem;
    font-size: .68rem;
    white-space: nowrap;
}

.table-orders tbody td {
    padding: .6rem .75rem;
    font-size: .82rem;
}

.th-center { text-align: center; }
.th-right  { text-align: right; }
.td-center { text-align: center; }
.td-right  { text-align: right; }
.td-nowrap { white-space: nowrap; }
.td-mono   { font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace; font-size: .78rem; }
.td-bold   { font-weight: 600; }
.td-small  { font-size: .75rem; color: var(--text-secondary); }
.td-accent { color: var(--accent-hover); }

.td-desc {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.td-actions {
    white-space: nowrap;
    text-align: right;
}

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

.btn-delete-icon:hover {
    color: #fca5a5;
    background: rgba(239 68 68 / .1);
}

.row-verrechnet { opacity: .55; }
.row-verrechnet:hover { opacity: .8; }

.check-icon { font-size: .9rem; }
.check-yes  { color: var(--success); }
.check-no   { color: var(--text-muted); }

/* ── Card Header Row ───────────────────────────────────── */
.card-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.result-count {
    font-size: .85rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* ── Search ────────────────────────────────────────────── */
.search-form {
    flex: 1;
    max-width: 400px;
}

.search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrap > i {
    position: absolute;
    left: .75rem;
    color: var(--text-muted);
    font-size: .8rem;
    pointer-events: none;
}

.search-input-wrap input {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
    height: 36px;
    font-size: .825rem;
}

.search-clear {
    position: absolute;
    right: .5rem;
    color: var(--text-muted);
    padding: .25rem;
    border-radius: 4px;
    transition: var(--transition);
}

.search-clear:hover {
    color: var(--text-primary);
    background: rgba(255 255 255 / .05);
}

/* ── Empty State ───────────────────────────────────────── */
.td-empty { padding: 3rem 1.5rem !important; }

.empty-state {
    text-align: center;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 2.5rem;
    margin-bottom: .75rem;
    opacity: .4;
}

.empty-state p {
    margin-bottom: 1rem;
    font-size: .9rem;
}

/* ── Pagination ────────────────────────────────────────── */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1rem;
    border-top: 1px solid var(--border);
}

.pagination-info {
    font-size: .8rem;
    color: var(--text-secondary);
}

/* ── Order Form ────────────────────────────────────────── */
.form-section {
    margin-bottom: 1.75rem;
}

.form-section-title {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}

.form-section-title i { color: var(--accent); font-size: .8rem; }

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.computed-fields {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: .75rem 1rem;
    background: rgba(255 255 255 / .03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    height: 100%;
    justify-content: center;
}

.computed-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.computed-label {
    font-size: .75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.computed-value {
    font-size: .9rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
}

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

.btn-danger {
    background: rgba(239 68 68 / .12);
    color: #fca5a5;
    border-color: rgba(239 68 68 / .25);
}

.btn-danger:hover {
    background: rgba(239 68 68 / .2);
    color: #fecaca;
}

@media (max-width: 768px) {
    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
    }

    .card-header-row {
        flex-direction: column;
        align-items: stretch;
    }

    .search-form { max-width: none; }
}

/* ── Utilities ─────────────────────────────────────────── */
.text-secondary { color: var(--text-secondary); }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }

/* ── Mobile Overlay ────────────────────────────────────── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0 0 0 / .6);
    z-index: 90;
    backdrop-filter: blur(4px);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .content {
        margin-left: 0;
    }

    .topbar {
        padding: 0 1rem;
    }

    .page-content {
        padding: 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-overlay.active {
        display: block;
    }

    .sidebar-toggle {
        display: none;
    }

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

    .feature-grid {
        grid-template-columns: 1fr;
    }

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

    .form-actions .btn { width: 100%; justify-content: center; }
}

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

    .login-card {
        padding: 1.75rem;
    }
}

/* ── Collapsed Sidebar ─────────────────────────────────── */
@media (min-width: 769px) {
    .sidebar.collapsed {
        width: var(--sidebar-collapsed);
    }

    .sidebar.collapsed .logo span,
    .sidebar.collapsed .nav-links li a span,
    .sidebar.collapsed .nav-links .badge,
    .sidebar.collapsed .nav-section,
    .sidebar.collapsed .user-details,
    .sidebar.collapsed .toggle-label {
        display: none;
    }

    .sidebar.collapsed .sidebar-toggle i {
        transform: rotate(180deg);
    }

    .sidebar.collapsed + .content {
        margin-left: var(--sidebar-collapsed);
    }

    .sidebar.collapsed .sidebar-footer {
        justify-content: center;
        padding: .75rem;
    }

    .sidebar.collapsed .user-info { display: none; }

    .sidebar.collapsed .nav-links li a {
        justify-content: center;
        padding: .75rem;
    }

    .sidebar.collapsed .nav-links li a i {
        width: auto;
        font-size: 1.1rem;
    }
}

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255 255 255 / .1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255 255 255 / .2); }

/* ── Selection ─────────────────────────────────────────── */
::selection {
    background: rgba(99 102 241 / .3);
    color: white;
}
