/* /Components/Layout/LoginLayout.razor.rz.scp.css */
.login-shell[b-e4cdtvb8r1] {
    min-height: 100dvh;
    padding-top: var(--safe-top);
    padding-bottom: var(--safe-bottom);
    background: linear-gradient(160deg, var(--ampleo-primary) 0%, var(--ampleo-secondary) 100%);
}
/* /Components/Layout/MobileLayout.razor.rz.scp.css */
/* ── Mobile Layout Shell — AmpleoCRM Brand ───────── */

.mobile-layout[b-by06ydysqy] {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    background: var(--ampleo-bg);
    font-family: 'Aptos', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ── Header ─────────────────────────────────────── */
.mobile-header[b-by06ydysqy] {
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 56px;
    background: var(--ampleo-primary);
    color: white;
    flex-shrink: 0;
    z-index: 100;
    padding-top: var(--safe-top);
}

.hamburger[b-by06ydysqy] {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    margin-right: 8px;
    border-radius: 6px;
    line-height: 1;
    display: flex;
    align-items: center;
}
.hamburger:active[b-by06ydysqy] { background: rgba(255,255,255,0.15); }

.header-nav-btn[b-by06ydysqy] {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    margin-left: 4px;
    border-radius: 6px;
    line-height: 1;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.header-nav-btn:active[b-by06ydysqy] { background: rgba(255,255,255,0.15); }

.header-title[b-by06ydysqy] {
    font-size: 17px;
    font-weight: 700;
    flex: 1;
    letter-spacing: -0.3px;
}

.sync-badge[b-by06ydysqy] {
    background: var(--ampleo-accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 12px;
    margin-left: auto;
}

.sync-badge-failed[b-by06ydysqy] {
    background: #c0392b;
    border: none;
    margin-left: 6px;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.mock-banner[b-by06ydysqy] {
    background: var(--ampleo-secondary);
    color: white;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.offline-banner[b-by06ydysqy] {
    background: var(--ampleo-accent);
    color: white;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ── Nav overlay ────────────────────────────────── */
.nav-overlay[b-by06ydysqy] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 200;
    animation: fadeIn-b-by06ydysqy 0.15s ease;
}

/* ── Nav drawer ─────────────────────────────────── */
.mobile-nav[b-by06ydysqy] {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 272px;
    background: white;
    z-index: 300;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0,0,0,0.10);
    animation: slideIn-b-by06ydysqy 0.2s ease;
}

@keyframes slideIn-b-by06ydysqy  { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@keyframes fadeIn-b-by06ydysqy   { from { opacity: 0; }                  to { opacity: 1; } }

/* ── Nav header (brand) ─────────────────────────── */
.nav-header[b-by06ydysqy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px 16px;
    border-bottom: 3px solid var(--ampleo-accent);
    flex-shrink: 0;
}

.nav-brand-wrap[b-by06ydysqy] { display: flex; flex-direction: column; }

.nav-brand[b-by06ydysqy] {
    font-size: 20px;
    font-weight: 800;
    color: var(--ampleo-primary);
    letter-spacing: -0.8px;
    font-family: 'Aptos', sans-serif;
    line-height: 1;
}

.nav-close[b-by06ydysqy] {
    background: none;
    border: none;
    color: var(--ampleo-text-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    line-height: 1;
    display: flex;
    align-items: center;
}
.nav-close:active[b-by06ydysqy] { background: rgba(0,0,0,0.05); }

/* ── Nav body (scroll) ──────────────────────────── */
.nav-body[b-by06ydysqy] {
    flex: 1;
    overflow-y: auto;
    padding: 12px 8px;
}

/* ── Section label ──────────────────────────────── */
.nav-section-label[b-by06ydysqy] {
    font-size: 10px;
    font-weight: 800;
    color: var(--ampleo-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 12px 4px;
    margin-top: 4px;
}

/* ── Nav items (::deep penetrates NavItem.razor child component) ── */
[b-by06ydysqy] .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    color: var(--ampleo-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.1s, color 0.1s;
    font-family: inherit;
    margin-bottom: 1px;
}

[b-by06ydysqy] .nav-item:hover,
[b-by06ydysqy] .nav-item:active { background: rgba(42,77,105,0.06); }

[b-by06ydysqy] .nav-item-active {
    background: rgba(42,77,105,0.10) !important;
    color: var(--ampleo-primary) !important;
    font-weight: 700;
}

[b-by06ydysqy] .nav-icon {
    font-size: 17px;
    width: 22px;
    text-align: center;
    color: var(--ampleo-secondary);
    flex-shrink: 0;
}

[b-by06ydysqy] .nav-item-active .nav-icon { color: var(--ampleo-primary); }

.nav-divider[b-by06ydysqy] {
    border: none;
    border-top: 1px solid var(--ampleo-border);
    margin: 10px 8px;
}

[b-by06ydysqy] .nav-logout { color: var(--ampleo-danger); }
[b-by06ydysqy] .nav-logout .nav-icon { color: var(--ampleo-danger); }

/* ── Nav footer (user info) ─────────────────────── */
.nav-footer[b-by06ydysqy] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px calc(14px + var(--safe-bottom));
    border-top: 1px solid var(--ampleo-border);
    background: var(--ampleo-bg);
    flex-shrink: 0;
}

.nav-user-avatar[b-by06ydysqy] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ampleo-primary);
    color: white;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-user-name[b-by06ydysqy] {
    font-size: 13px;
    font-weight: 700;
    color: var(--ampleo-text);
    line-height: 1.2;
}
.nav-user-role[b-by06ydysqy] {
    font-size: 11px;
    color: var(--ampleo-text-muted);
}

/* ── Main content ───────────────────────────────── */
.mobile-content[b-by06ydysqy] {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px;
    padding-bottom: calc(20px + var(--safe-bottom));
    -webkit-overflow-scrolling: touch;
}

/* /Components/Pages/Activities/ActivityDetail.razor.rz.scp.css */
.activity-description[b-l4cjp5p6tm] {
    margin: 6px 0 0;
    white-space: pre-wrap;
}
/* /Components/Pages/Followups/FollowupList.razor.rz.scp.css */
.followup-done[b-q25gn7gjfg] {
    width: auto;
    margin-top: 10px;
}
/* /Components/Pages/Leads/LeadDetail.razor.rz.scp.css */
.lead-message[b-5ceonq1il5] {
    margin: 6px 0 0;
    white-space: pre-wrap;
    color: var(--ampleo-text);
}

.lead-note[b-5ceonq1il5] {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(42,77,105,0.05);
    color: var(--ampleo-text-muted);
    font-size: 13px;
    line-height: 1.5;
}
/* /Components/Pages/Login.razor.rz.scp.css */
/* Kept in a stylesheet rather than an inline <style> block so the hosted app can run
   under a Content-Security-Policy without 'unsafe-inline'. */

.login-container[b-caotv70f9o] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100dvh;
    max-width: 400px;
    margin: 0 auto;
    padding: 32px 24px;
}

.login-logo[b-caotv70f9o] {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo .logo-icon[b-caotv70f9o] {
    display: block;
    font-size: 56px;
    color: #fff;
    line-height: 1;
}

.login-logo h1[b-caotv70f9o] {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 12px 0 4px;
}

.login-logo .logo-sub[b-caotv70f9o] {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

.login-field[b-caotv70f9o] {
    margin-bottom: 16px;
}

.login-field label[b-caotv70f9o] {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-input[b-caotv70f9o] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    /* 16px minimum: iOS zooms the viewport on focus for anything smaller and never zooms back. */
    font-size: 16px;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.login-input[b-caotv70f9o]::placeholder {
    color: rgba(255,255,255,0.35);
}

.login-input:focus[b-caotv70f9o] {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.12);
    outline: none;
}

.login-error[b-caotv70f9o] {
    background: rgba(220,38,38,0.2);
    border: 1px solid rgba(220,38,38,0.4);
    color: #fca5a5;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

.login-submit[b-caotv70f9o] {
    width: 100%;
    min-height: 48px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #fff;
    color: var(--ampleo-primary);
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
}

.login-submit:active[b-caotv70f9o] {
    background: rgba(255,255,255,0.85);
}

.login-submit:disabled[b-caotv70f9o] {
    opacity: 0.6;
}

.login-footer[b-caotv70f9o] {
    text-align: center;
    margin-top: 24px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}
/* /Components/Pages/Pipeline/OpportunityDetail.razor.rz.scp.css */
.opp-headline[b-66qdjdigit] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.opp-amount[b-66qdjdigit] {
    font-size: 24px;
    font-weight: 700;
    color: var(--ampleo-success);
}

.opp-description[b-66qdjdigit] {
    margin: 6px 0 0;
    white-space: pre-wrap;
}
/* /Components/Pages/Welcome.razor.rz.scp.css */
.welcome[b-v2mx4s23ih] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100dvh;
    max-width: 440px;
    margin: 0 auto;
    padding: 32px 24px;
}

.welcome-head[b-v2mx4s23ih] {
    text-align: center;
    margin-bottom: 28px;
}

.welcome-icon[b-v2mx4s23ih] {
    display: block;
    font-size: 56px;
    color: #fff;
    line-height: 1;
}

.welcome-head h1[b-v2mx4s23ih] {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 12px 0 6px;
}

.welcome-sub[b-v2mx4s23ih] {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin: 0;
}

.welcome-card[b-v2mx4s23ih] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--ampleo-radius-lg);
    padding: 20px;
    color: #fff;
}

.welcome-card p[b-v2mx4s23ih] {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.5;
}

.welcome-note[b-v2mx4s23ih] {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.welcome-btn[b-v2mx4s23ih],
.welcome-btn-outline[b-v2mx4s23ih] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
}

.welcome-btn[b-v2mx4s23ih] {
    border: none;
    background: #fff;
    color: var(--ampleo-primary);
}

.welcome-btn:active[b-v2mx4s23ih] {
    background: rgba(255,255,255,0.85);
}

.welcome-btn-outline[b-v2mx4s23ih] {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.45);
    color: #fff;
}

.welcome-steps[b-v2mx4s23ih] {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.welcome-steps li[b-v2mx4s23ih] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.welcome-steps li:last-child[b-v2mx4s23ih] {
    border-bottom: none;
}

.step-num[b-v2mx4s23ih] {
    flex: 0 0 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.welcome-url[b-v2mx4s23ih] {
    background: rgba(0,0,0,0.2);
    border-radius: var(--ampleo-radius);
    padding: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    word-break: break-all;
    text-align: center;
}

.welcome-link[b-v2mx4s23ih] {
    display: block;
    text-align: center;
    margin-top: 16px;
    padding: 10px;
    min-height: 44px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    text-decoration: underline;
}
/* /Components/Shared/EntityPicker.razor.rz.scp.css */
.picker[b-0o2pr5u9oj] {
    margin-bottom: 16px;
    position: relative;
}

.picker-label[b-0o2pr5u9oj] {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--ampleo-primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.picker-selected[b-0o2pr5u9oj] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border: 1px solid var(--ampleo-border);
    border-radius: var(--ampleo-radius);
    background: rgba(42,77,105,0.05);
}

.picker-selected-name[b-0o2pr5u9oj] {
    flex: 1;
    min-width: 0;
    font-weight: 600;
}

.picker-clear[b-0o2pr5u9oj] {
    border: none;
    background: none;
    color: var(--ampleo-text-muted);
    min-width: 36px;
    min-height: 36px;
}

.picker-results[b-0o2pr5u9oj] {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    border: 1px solid var(--ampleo-border);
    border-radius: var(--ampleo-radius);
    background: var(--ampleo-card);
    max-height: 240px;
    overflow-y: auto;
}

.picker-result[b-0o2pr5u9oj] {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    min-height: 44px;
    border: none;
    border-bottom: 1px solid var(--ampleo-border);
    background: none;
    color: var(--ampleo-text);
}

.picker-results li:last-child .picker-result[b-0o2pr5u9oj] {
    border-bottom: none;
}

.picker-hint[b-0o2pr5u9oj] {
    margin-top: 6px;
    font-size: 13px;
    color: var(--ampleo-text-muted);
}

.picker-hint-error[b-0o2pr5u9oj] {
    color: var(--ampleo-danger);
}
/* /Components/Shared/InstallPrompt.razor.rz.scp.css */
.install-sheet[b-9d29nqv6zo] {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    padding: 16px 16px calc(16px + var(--safe-bottom));
    background: var(--ampleo-card);
    border-top: 1px solid var(--ampleo-border);
    border-radius: var(--ampleo-radius-lg) var(--ampleo-radius-lg) 0 0;
    box-shadow: 0 -6px 24px rgba(0,0,0,0.18);
    animation: install-sheet-in-b-9d29nqv6zo 0.22s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    .install-sheet[b-9d29nqv6zo] {
        animation: none;
    }
}

@keyframes install-sheet-in-b-9d29nqv6zo {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.install-close[b-9d29nqv6zo] {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 40px;
    min-height: 40px;
    border: none;
    background: none;
    color: var(--ampleo-text-muted);
}

.install-body[b-9d29nqv6zo] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 36px;
}

.install-icon[b-9d29nqv6zo] {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(42,77,105,0.08);
    color: var(--ampleo-primary);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.install-text[b-9d29nqv6zo] {
    min-width: 0;
}

.install-title[b-9d29nqv6zo] {
    font-weight: 700;
    color: var(--ampleo-text);
}

.install-lead[b-9d29nqv6zo] {
    font-size: 13px;
    color: var(--ampleo-text-muted);
    line-height: 1.4;
}

.install-actions[b-9d29nqv6zo] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.install-primary[b-9d29nqv6zo] {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 14px;
    border: none;
    border-radius: var(--ampleo-radius);
    background: var(--ampleo-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.install-primary:active[b-9d29nqv6zo] {
    background: #1E3A50;
}

.install-primary:disabled[b-9d29nqv6zo] {
    opacity: 0.6;
}

.install-secondary[b-9d29nqv6zo] {
    min-height: 46px;
    padding: 12px 8px;
    border: none;
    background: none;
    color: var(--ampleo-text-muted);
    font-size: 14px;
}
/* /Components/Shared/KpiCard.razor.rz.scp.css */
.kpi-card[b-5h6nqpj47u] {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--ampleo-card);
    border: 1px solid var(--ampleo-border);
    border-radius: var(--ampleo-radius-lg);
    padding: 14px;
    text-decoration: none;
    color: inherit;
}

.kpi-card:active[b-5h6nqpj47u] {
    transform: scale(0.985);
}

.kpi-icon[b-5h6nqpj47u] {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(42,77,105,0.08);
    color: var(--ampleo-primary);
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kpi-body[b-5h6nqpj47u] {
    min-width: 0;
}

.kpi-value[b-5h6nqpj47u] {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--ampleo-primary);
    line-height: 1.2;
}

.kpi-label[b-5h6nqpj47u] {
    display: block;
    font-size: 13px;
    color: var(--ampleo-text-muted);
}
/* /Components/Shared/MobileSearchBar.razor.rz.scp.css */
.search-bar[b-a38xuth3mt] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--ampleo-card);
    border: 1px solid var(--ampleo-border);
    border-radius: var(--ampleo-radius);
    padding: 10px 14px;
    margin-bottom: 16px;
}

.search-bar:focus-within[b-a38xuth3mt] {
    border-color: var(--ampleo-primary);
    box-shadow: 0 0 0 3px rgba(42,77,105,0.1);
}

.search-icon[b-a38xuth3mt] {
    flex-shrink: 0;
    opacity: 0.45;
}

.search-input[b-a38xuth3mt] {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    color: var(--ampleo-text);
    -webkit-appearance: none;
}

.search-input[b-a38xuth3mt]::placeholder {
    color: var(--ampleo-text-muted);
    opacity: 0.7;
}

.search-clear[b-a38xuth3mt] {
    border: none;
    background: none;
    color: var(--ampleo-text-muted);
    min-width: 32px;
    min-height: 32px;
    padding: 0;
}
/* /Components/Shared/RecordList.razor.rz.scp.css */
.list-retry[b-jac0xrb9zu],
.list-more[b-jac0xrb9zu] {
    margin-top: 12px;
}

.list-more[b-jac0xrb9zu] {
    margin-bottom: 24px;
}
/* /Components/Shared/RelatedRecords.razor.rz.scp.css */
.related[b-fhn75gcw8a] {
    margin-top: 22px;
}

.related .section-title[b-fhn75gcw8a] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-count[b-fhn75gcw8a] {
    margin-left: auto;
    font-size: 12px;
    font-weight: 400;
    color: var(--ampleo-text-muted);
    text-transform: none;
    letter-spacing: 0;
}

.related-row[b-fhn75gcw8a] {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.related-text[b-fhn75gcw8a] {
    flex: 1;
    min-width: 0;
}

.related-empty[b-fhn75gcw8a] {
    padding: 14px;
    border: 1px dashed var(--ampleo-border);
    border-radius: var(--ampleo-radius);
    color: var(--ampleo-text-muted);
    font-size: 14px;
    text-align: center;
}
/* /Components/Shared/UpdateToast.razor.rz.scp.css */
.update-toast[b-7dv3x31qa8] {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + var(--safe-bottom));
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--ampleo-radius-lg);
    background: var(--ampleo-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    font-size: 14px;
}

.update-toast span[b-7dv3x31qa8] {
    flex: 1;
}

.update-apply[b-7dv3x31qa8] {
    border: none;
    border-radius: var(--ampleo-radius);
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
    background: #fff;
    color: var(--ampleo-primary);
    min-height: 40px;
}

.update-dismiss[b-7dv3x31qa8] {
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    min-width: 40px;
    min-height: 40px;
}
