@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    color-scheme: light;
    --bg: #f4f7f5;
    --surface: #ffffff;
    --surface-soft: #ecf3f0;
    --text: #10231f;
    --muted: #5c6d67;
    --line: rgba(16, 35, 31, 0.1);
    --brand: #0f766e;
    --brand-dark: #134e4a;
    --brand-light: #14b8a6;
    --accent: #d97706;
    --danger: #dc2626;
    --danger-soft: #fef2f2;
    --shadow: 0 18px 50px rgba(16, 35, 31, 0.08);
    --shadow-lg: 0 28px 70px rgba(16, 35, 31, 0.12);
    --radius: 22px;
    --radius-sm: 14px;
    --radius-xs: 10px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', var(--font);
    font-weight: 700;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    min-height: 100%;
    font-family: var(--font);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 35%),
        radial-gradient(circle at top right, rgba(217, 119, 6, 0.08), transparent 30%),
        linear-gradient(180deg, #f8fbfa 0%, var(--bg) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; }

input, select, textarea { font: inherit; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 6px; }

body:not(.guest-layout)::before {
    content: '';
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background-image: linear-gradient(rgba(16, 35, 31, 0.025) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(16, 35, 31, 0.025) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 80%);
}

/* ── PANELS & GLASS CARD ────────────────────── */
.panel, .glass-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.brand-mark {
    display: inline-flex; align-items: center; gap: 12px;
    font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
}
.brand-mark svg { flex: 0 0 auto; }
.brand-mark span { font-size: 0.95rem; }
.panel h1, .panel h2, .glass-card h2 {
    margin: 18px 0 12px; line-height: 1.05;
}
.panel p, .glass-card li {
    color: var(--muted); line-height: 1.6; font-size: 1rem;
}

/* ── GUEST / LOGIN LAYOUT ────────────────────── */
.guest-layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 24px;
    background: 
        radial-gradient(circle at 15% 20%, rgba(15, 118, 110, 0.18), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(217, 119, 6, 0.12), transparent 45%),
        linear-gradient(135deg, #f3faf7 0%, #e8f2ee 100%);
    position: relative;
    overflow: hidden;
}

/* Blurry floating auroras in the background */
.guest-layout::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: var(--brand-light);
    filter: blur(130px);
    opacity: 0.18;
    top: 10%;
    left: 15%;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: floating-blob-1 12s infinite alternate ease-in-out;
}
.guest-layout::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: var(--accent);
    filter: blur(110px);
    opacity: 0.12;
    bottom: 15%;
    right: 15%;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: floating-blob-2 9s infinite alternate-reverse ease-in-out;
}

@keyframes floating-blob-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -30px) scale(1.15); }
}
@keyframes floating-blob-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 40px) scale(1.1); }
}

.login-wrapper {
      position: relative;
      width: 100%;
      max-width: 440px;
      margin: 0 auto;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 24px;
      animation: loginFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

.login-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Outfit', var(--font);
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--brand-dark);
    letter-spacing: 0.02em;
}
.login-brand svg {
    filter: drop-shadow(0 4px 10px rgba(15, 118, 110, 0.25));
}

.auth-card {
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    padding: 38px;
    box-shadow: 
        0 4px 30px rgba(16, 35, 31, 0.02),
        0 24px 75px rgba(16, 35, 31, 0.12);
}
.auth-card h1 {
    font-size: 1.75rem;
    color: var(--brand-dark);
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: center;
    font-family: 'Outfit', var(--font);
}
.auth-subtitle {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}
.form-group span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-left: 2px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -6px;
    margin-bottom: 24px;
}

/* Credentials drawer */
.credentials-drawer {
    margin-top: 24px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}
.credentials-drawer summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--brand);
    user-select: none;
    list-style: none;
    transition: color 0.2s ease;
}
.credentials-drawer summary::-webkit-details-marker {
    display: none;
}
.credentials-drawer summary:hover {
    color: var(--brand-dark);
}
.credentials-drawer[open] summary .summary-icon {
    transform: rotate(45deg);
}
.credentials-drawer summary .summary-icon {
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}
.drawer-content {
    margin-top: 12px;
    background: rgba(15, 118, 110, 0.04);
    border: 1px dashed rgba(15, 118, 110, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: drawerSlide 0.2s ease-out;
}
.credential-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
}
.credential-label {
    font-weight: 600;
    color: var(--muted);
}
.credentials-drawer code.copyable {
    background: white;
    border: 1px solid rgba(16, 35, 31, 0.1);
    color: var(--brand-dark);
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: all;
    font-family: monospace;
}
.credentials-drawer code.copyable:hover {
    background: var(--brand-dark);
    color: white;
    border-color: var(--brand-dark);
}

@keyframes loginFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes drawerSlide {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ────────────────────────────────── */
.button, .text-button, .btn-icon {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; border: 0; border-radius: 999px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}
.button { padding: 0.8rem 1.4rem; min-height: 44px; font-weight: 600; font-size: 0.95rem; }
.button:hover, .text-button:hover, .btn-icon:hover { transform: translateY(-1px); }
.button:active, .text-button:active { transform: translateY(0); }
.button.primary { color: white; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); box-shadow: 0 16px 26px rgba(15,118,110,0.24); }
.button.primary:hover { box-shadow: 0 20px 34px rgba(15,118,110,0.32); }
.button.ghost { color: var(--brand-dark); background: rgba(15,118,110,0.09); }
.button.danger { color: white; background: var(--danger); }
.button.full-width { width: 100%; }
.text-button { padding: 0.5rem 0.8rem; background: transparent; color: var(--brand-dark); font-weight: 700; font-size: 0.93rem; }
.text-button.danger { color: var(--danger); }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: var(--radius-xs); background: transparent; color: var(--muted); font-size: 1.2rem; }
.btn-icon:hover { background: var(--surface-soft); color: var(--text); }

/* ── LAYOUT ─────────────────────────────────── */
.app-shell { min-height: 100vh; }
.topbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px; padding: 14px 24px;
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    background: rgba(248,251,250,0.88);
    border-bottom: 1px solid rgba(16,35,31,0.08);
}
.brand-mark.compact { text-transform: none; }
.menu { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.menu a {
    padding: 0.5rem 0.9rem; border-radius: 10px;
    font-weight: 600; font-size: 0.92rem;
    color: var(--muted); transition: background 0.15s, color 0.15s;
}
.menu a:hover, .menu a.active { background: var(--surface-soft); color: var(--brand-dark); }
.menu .text-button { margin-left: 6px; }
.page-shell { width: min(1180px, calc(100% - 32px)); margin: 24px auto 48px; }

/* ── FOOTER ─────────────────────────────────── */
.app-footer {
    text-align: center; padding: 20px 16px 24px;
    border-top: 1px solid rgba(16,35,31,0.08);
    background: rgba(248,251,250,0.6);
}
.app-footer p {
    font-size: 0.82rem; color: var(--muted); line-height: 1.8; margin: 0;
}
.app-footer p:first-child { font-weight: 600; }

/* ── HAMBURGER ──────────────────────────────── */
.hamburger { display: none; }
@media (max-width: 720px) {
    .hamburger { display: flex; }
    .menu { display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 2px;
        background: rgba(255,255,255,0.96); backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--line); padding: 10px 16px 16px;
        box-shadow: var(--shadow-lg);
    }
    .menu.open { display: flex; }
    .menu a { padding: 12px 14px; border-radius: var(--radius-xs); }
    .topbar { padding: 12px 16px; }
}

/* ── ALERTS ─────────────────────────────────── */
.alert {
    padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 16px;
    border: 1px solid var(--line); background: var(--surface);
    font-size: 0.95rem; animation: fadeIn 0.3s ease;
}
.alert.success { border-color: rgba(15,118,110,0.25); background: rgba(15,118,110,0.06); }
.alert.error { border-color: rgba(220,38,38,0.25); background: var(--danger-soft); color: #991b1b; }
.alert ul { margin: 0; padding-left: 18px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ── AUTH ───────────────────────────────────── */
.auth-grid, .dashboard-grid { display: grid; gap: 20px; }
.auth-grid { grid-template-columns: minmax(0, 1fr) 320px; align-items: start; }
.auth-card, .side-note, .panel { padding: 28px; }

/* ── FORMS ──────────────────────────────────── */
.stack-form { display: grid; gap: 16px; margin-top: 20px; }
.stack-form label { display: grid; gap: 6px; font-weight: 700; font-size: 0.93rem; }
.stack-form span { color: var(--muted); font-size: 0.88rem; font-weight: 500; }
.stack-form input[type="text"],
.stack-form input[type="email"],
.stack-form input[type="password"],
.stack-form input[type="date"],
.stack-form input[type="time"],
.stack-form input[type="number"],
.stack-form select,
.stack-form textarea {
    width: 100%; padding: 0.8rem 1rem;
    border-radius: var(--radius-sm); border: 1.5px solid rgba(16,35,31,0.12);
    background: white; color: var(--text); font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.stack-form input:focus,
.stack-form select:focus,
.stack-form textarea:focus {
    outline: none; border-color: var(--brand-light); box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}
.inline-check { display: flex !important; align-items: center; gap: 10px; flex-direction: row !important; }
.inline-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--brand); }

/* ── DASHBOARD ──────────────────────────────── */
.dashboard-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.dashboard-grid .panel:nth-child(1) { grid-column: span 12; }
.dashboard-grid .panel:nth-child(2),
.dashboard-grid .panel:nth-child(3) { grid-column: span 6; }
.accent { background: linear-gradient(135deg, rgba(15,118,110,0.1), rgba(217,119,6,0.07)); }
.quick-links { display: flex; flex-wrap: wrap; gap: 10px; }
.quick-links a {
    padding: 0.65rem 1.1rem; border-radius: 999px;
    background: var(--surface-soft); font-weight: 600; font-size: 0.9rem;
    transition: background 0.15s;
}
.quick-links a:hover { background: rgba(15,118,110,0.12); }
.status-list { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }
.stats-row { display: flex; gap: 14px; flex-wrap: wrap; }
.stats-row .stat-card {
    display: grid; gap: 6px; min-width: 140px; flex: 1;
    padding: 20px 22px; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(15,118,110,0.08), rgba(255,255,255,0.6));
    border: 1px solid rgba(15,118,110,0.08);
}
.stats-row .stat-card strong { font-size: 2.2rem; font-weight: 800; color: var(--brand-dark); }
.stats-row .stat-card span { font-size: 0.85rem; color: var(--muted); }

/* ── PANELS & TABLES ────────────────────────── */
.panel-heading {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; margin-bottom: 18px; flex-wrap: wrap;
}
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
th, td { padding: 13px 12px; border-bottom: 1px solid rgba(16,35,31,0.07); text-align: left; }
th { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
tbody tr { transition: background 0.12s; }
tbody tr:hover { background: rgba(15,118,110,0.03); }
.actions-cell { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.actions-cell a,
.btn-action {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 0.45rem 0.85rem; border-radius: 10px;
    font-size: 0.85rem; font-weight: 600; border: 0;
    cursor: pointer; transition: background 0.15s, transform 0.12s;
    text-decoration: none;
}
.btn-action.edit {
    color: var(--brand-dark); background: rgba(15,118,110,0.08);
}
.btn-action.edit:hover { background: rgba(15,118,110,0.15); transform: translateY(-1px); }
.btn-action.edit::before { content: '✎'; font-size: 0.8rem; }
.btn-action.delete {
    color: var(--danger); background: rgba(220,38,38,0.06);
    font: inherit;
}
.btn-action.delete:hover { background: rgba(220,38,38,0.12); transform: translateY(-1px); }
.btn-action.delete::before { content: '✕'; font-size: 0.75rem; font-weight: 700; }
.badge {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    font-size: 0.8rem; font-weight: 700;
    background: var(--surface-soft); color: var(--muted);
}
.badge.admin { background: rgba(15,118,110,0.12); color: var(--brand-dark); }
.turno-badge {
    color: var(--t-color);
    border: 1.5px solid var(--t-color);
    background: transparent;
    position: relative;
}
.turno-badge::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    background: var(--t-color); opacity: 0.1; pointer-events: none;
}
.color-dot {
    display: inline-block; width: 10px; height: 10px;
    border-radius: 50%; margin-right: 4px; vertical-align: middle;
}
.toggle-badge {
    display: inline-block; padding: 5px 14px; border-radius: 999px;
    font-size: 0.8rem; font-weight: 700; border: 1.5px solid; cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.toggle-badge.on {
    background: rgba(15,118,110,0.1); color: var(--brand-dark); border-color: rgba(15,118,110,0.3);
}
.toggle-badge.off {
    background: rgba(220,38,38,0.06); color: #991b1b; border-color: rgba(220,38,38,0.2);
}
.toggle-badge:hover { opacity: 0.8; }
.inactive-row { opacity: 0.55; }
.inactive-row:hover { opacity: 0.8; }
.bucket-count {
    font-size: 0.82rem; color: var(--muted); font-weight: 600;
    margin-bottom: 10px; padding: 4px 12px; border-radius: 8px;
    background: var(--surface-soft); display: inline-block;
}
.bucket-list { display: grid; gap: 8px; }
.bucket-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; border-radius: var(--radius-xs);
    background: var(--surface-soft); font-size: 0.92rem;
    transition: background 0.15s;
}
.bucket-item:hover { background: rgba(15,118,110,0.06); }
.item-avatar {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.04em;
}
.item-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.item-info .muted { color: var(--muted); font-size: 0.82rem; }
.item-tag {
    display: inline-block; padding: 2px 8px; border-radius: 6px;
    font-size: 0.75rem; font-weight: 700; margin-top: 2px; width: fit-content;
}
.item-tag.vac { background: rgba(15,118,110,0.1); color: var(--brand-dark); }
.empty-state {
    text-align: center; padding: 28px 16px;
}
.empty-icon { font-size: 2.4rem; display: block; margin-bottom: 8px; opacity: 0.7; }
.muted-icon { color: var(--muted); opacity: 0.4; }
.muted-icon svg { width: 36px; height: 36px; }
.empty-state p { color: var(--muted); margin: 0; }
.bucket-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.bucket-header h2 { margin: 0; }
.bucket-icon {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
}
.bucket-icon.vac { background: rgba(15,118,110,0.1); color: var(--brand); }
.bucket-icon.ren { background: rgba(220,38,38,0.08); color: var(--danger); }
.bucket-icon svg { width: 18px; height: 18px; }
.dash-bucket h2 { font-size: 1.05rem; margin-top: 0; }
.form-panel { max-width: 720px; margin: 0 auto; }
.side-note {
    padding-top: 36px; color: white;
    background: linear-gradient(180deg, rgba(19,78,74,0.95), rgba(15,118,110,0.78));
}
.side-note p, .side-note h2 { color: inherit; }
.side-note code {
    background: rgba(255,255,255,0.18); padding: 2px 8px; border-radius: 6px;
    font-size: 0.92rem; letter-spacing: 0.02em;
}

/* ── MODAL ──────────────────────────────────── */
.modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(16,35,31,0.45); backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 20px;
    animation: fadeIn 0.2s ease;
}
.modal-overlay.open { display: flex; }
.modal-box {
    position: relative;
    background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg);
    width: min(560px, 100%); max-height: 90vh; overflow-y: auto;
    padding: 32px; animation: slideUp 0.25s ease;
}
.modal-box.sm { width: min(420px, 100%); }
.modal-box h2 { font-size: 1.4rem; margin-bottom: 8px; }
.modal-box p { color: var(--muted); line-height: 1.6; font-size: 0.95rem; }
.modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border: 0; border-radius: 50%;
    background: rgba(16,35,31,0.06); color: var(--muted); font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
}
.modal-close:hover { background: rgba(16,35,31,0.12); }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 24px; flex-wrap: wrap; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── MOBILE CARDS (replaces table) ──────────── */
@media (max-width: 640px) {
    .table-wrap table, .table-wrap thead, .table-wrap tbody,
    .table-wrap th, .table-wrap td, .table-wrap tr {
        display: block;
    }
    .table-wrap thead { display: none; }
    .table-wrap tr {
        border: 1px solid var(--line); border-radius: var(--radius-sm);
        margin-bottom: 14px; padding: 16px; background: white;
        box-shadow: 0 4px 12px rgba(16,35,31,0.04);
    }
    .table-wrap td {
        display: flex; justify-content: space-between; align-items: center;
        padding: 8px 0; border: 0; font-size: 0.93rem;
    }
    .table-wrap td::before {
        content: attr(data-label); font-weight: 700; color: var(--muted);
        font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em;
        margin-right: 12px; flex-shrink: 0;
    }
    .actions-cell { justify-content: flex-end; padding-top: 10px !important; border-top: 1px solid var(--line) !important; margin-top: 6px; }
    .actions-cell::before { display: none; }
    .landing-shell { padding: 16px; }
    .hero-copy, .auth-card, .side-note, .panel, .glass-card, .modal-box { padding: 20px; }
    .page-shell { width: calc(100% - 16px); margin: 16px auto 32px; }
    .panel-heading { flex-direction: column; align-items: stretch; }
    .auth-grid { grid-template-columns: 1fr; }
    .dashboard-grid .panel { grid-column: span 12 !important; }
    .stats-row .stat-card { min-width: 100%; }
}

@media (max-width: 960px) {
    .auth-grid { grid-template-columns: 1fr; }
    .dashboard-grid .panel:nth-child(2),
    .dashboard-grid .panel:nth-child(3) { grid-column: span 12; }
}
