/* Leads2Cloud Web — matches iOS app theme */

:root {
    /* App colors from Xcode asset catalog */
    --accent: rgb(63, 109, 138);        /* AccentColor dark */
    --accent-light: rgb(40, 86, 115);   /* AccentColor light */
    --bg: rgb(45, 89, 124);             /* AppBackground dark */
    --bg-light: rgb(232, 232, 232);     /* AppBackground light */

    /* iOS dark mode surfaces */
    --black: #000000;
    --black-elevated: #1C1C1E;
    --black-secondary: #2C2C2E;
    --black-tertiary: #3A3A3C;

    /* Derived */
    --navbar-bg: var(--accent);
    --tabbar-bg: var(--accent);
    --card-bg: var(--black-elevated);
    --card-bg-hover: var(--black-secondary);
    --separator: rgba(255,255,255,0.08);

    --text: #FFFFFF;
    --text-secondary: rgba(255,255,255,0.6);
    --text-tertiary: rgba(255,255,255,0.4);

    --yellow: #FFD60A;
    --orange: #FF9500;
    --red: #FF3B30;
    --green: #34C759;

    --radius: 10px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

/* ===== Layout ===== */
.screen { height: 100vh; height: 100dvh; display: flex; flex-direction: column; }

#app-screen {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
}

.view {
    flex: 1;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.view.active { display: flex; }

/* ===== Nav Bar ===== */
.navbar {
    background: var(--navbar-bg);
    flex-shrink: 0;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 16px;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.navbar-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.navbar-left, .navbar-right {
    min-width: 60px;
}

.navbar-right { text-align: right; }

.leads-count-pill {
    display: inline-block;
    padding: 5px 12px;
    background: var(--black);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
}

.nav-btn {
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 20px;
}

.nav-btn:hover { background: rgba(0,0,0,0.65); }

/* ===== Tab Bar ===== */
.tabbar {
    display: flex;
    background: var(--black);
    border-top: 1px solid var(--separator);
    flex-shrink: 0;
    padding-bottom: var(--safe-bottom);
}

.tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px 0 14px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: color 0.15s;
}

.tab-item.active { color: #fff; }

.tab-icon { font-size: 36px; line-height: 1; }
.tab-label { font-size: 14px; font-weight: 600; }

/* ===== Login ===== */
#login-screen {
    background: var(--bg);
    align-items: center;
    justify-content: center;
    position: relative;
}

.login-wrap {
    text-align: center;
    padding: 40px 32px;
    width: 100%;
    max-width: 360px;
}

.login-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
    margin-bottom: 28px;
}

.login-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 6px;
}

.login-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

#login-code {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: none;
    background: rgba(255,255,255,0.12);
    color: var(--text);
    font-size: 17px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    outline: none;
    transition: background 0.2s;
}

#login-code:focus { background: rgba(255,255,255,0.18); }
#login-code::placeholder { color: var(--text-secondary); letter-spacing: 0; font-weight: 400; }

#login-btn {
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    border-radius: var(--radius);
    border: none;
    background: var(--accent);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

#login-btn:hover { opacity: 0.85; }
#login-btn:disabled { opacity: 0.5; cursor: default; }

.login-error {
    color: var(--yellow);
    font-size: 15px;
    margin-top: 16px;
}

.login-guide-btn {
    margin: 28px auto 0;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 0;
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.login-guide-btn i { font-size: 16px; }

.login-guide-btn:hover { background: rgba(255,255,255,0.18); }

#login-loading {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Search Bar ===== */
.view-header {
    flex-shrink: 0;
    padding: 8px 16px;
    background: var(--bg);
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--black-elevated);
    border-radius: var(--radius);
    padding: 0 10px;
    gap: 6px;
}

.search-icon {
    font-size: 14px;
    opacity: 0.5;
    flex-shrink: 0;
}

.search-bar input {
    flex: 1;
    padding: 8px 0;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 15px;
    outline: none;
}

.search-bar input::placeholder { color: var(--text-secondary); }

.search-clear {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
}

/* ===== Segmented Control ===== */
.segmented-control {
    display: flex;
    background: var(--black-elevated);
    border-radius: 8px;
    padding: 2px;
    margin-top: 10px;
}

.seg-btn {
    flex: 1;
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
}

.seg-btn.active {
    background: var(--black-tertiary);
}

/* ===== Category Pills ===== */
.category-scroll {
    overflow-x: auto;
    margin: 8px -16px 0;
    padding: 0 16px;
    scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar { display: none; }

.category-tabs {
    display: flex;
    gap: 8px;
    padding-bottom: 4px;
}

.cat-pill {
    padding: 7px 14px;
    border: none;
    background: var(--black-elevated);
    color: var(--text);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.2s;
}

.cat-pill.active {
    background: var(--black-tertiary);
    font-weight: 600;
    color: #fff;
}

/* ===== Sort Dropdown ===== */
.sort-dropdown {
    position: relative;
}

.sort-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 4px);
    background: var(--black-elevated);
    border-radius: 12px;
    padding: 6px;
    min-width: 210px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    z-index: 50;
}

.sort-section-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    padding: 8px 12px 4px;
}

.sort-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 15px;
    cursor: pointer;
    border-radius: 8px;
}

.sort-item:hover { background: var(--black-secondary); }
.sort-item.active { color: var(--accent-light); color: #8BC5EA; }

.sort-divider {
    height: 1px;
    background: var(--separator);
    margin: 4px 8px;
}

.sort-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 15px;
    color: var(--text);
    cursor: pointer;
    border-radius: 8px;
}

.sort-toggle:hover { background: var(--black-secondary); }

.sort-toggle input[type="checkbox"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
}

/* ===== Leads List ===== */
.list-container {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 16px;
}

.inset-group {
    background: var(--black);
    border-radius: var(--radius);
    overflow: hidden;
}

.lead-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.1s;
    border-bottom: 1px solid var(--separator);
}

.lead-row:last-child { border-bottom: none; }
.lead-row-alt { background: var(--black-elevated); }
.lead-row:hover { background: var(--black-secondary); }
.lead-row:active { background: var(--black-tertiary); }

.lead-row.compact { padding: 8px 16px; align-items: center; }

.lead-body {
    flex: 1;
    min-width: 0;
}

.lead-name-line {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lead-star {
    color: var(--yellow);
    font-size: 15px;
    flex-shrink: 0;
}

.lead-pending-icon {
    color: var(--orange);
    font-size: 15px;
    flex-shrink: 0;
}

.lead-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lead-name.compact-name {
    font-size: 15px;
    white-space: nowrap;
}

.lead-affiliation {
    font-size: 13px;
    color: var(--text);
    opacity: 0.85;
    margin-top: 1px;
}

.lead-date {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 1px;
}

.lead-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding-top: 2px;
}

.cat-badge {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(63,109,138,0.35);
    color: var(--text);
    white-space: nowrap;
}

.cat-badge.pending { background: rgba(255,149,0,0.3); }

.star-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 2px;
    line-height: 1;
}

.star-btn.starred { color: var(--yellow); }

.chevron {
    color: var(--text-tertiary);
    font-size: 14px;
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

.empty-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }
.empty-title { font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.empty-text { font-size: 15px; }

/* ===== Modal / Sheet ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.modal-sheet {
    background: var(--bg);
    border-radius: 12px 12px 0 0;
    width: 100%;
    max-width: 700px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    animation: sheetUp 0.3s ease;
}

@media (min-width: 700px) {
    .modal-overlay { align-items: center; }
    .modal-sheet {
        border-radius: 12px;
        max-height: 85vh;
        margin: 20px;
    }
}

.modal-sheet.modal-sm { max-width: 420px; }

@keyframes sheetUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--navbar-bg);
    border-radius: 12px 12px 0 0;
    flex-shrink: 0;
}

@media (min-width: 700px) {
    .modal-nav { border-radius: 12px 12px 0 0; }
}

.modal-nav-title {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}

.modal-done, .modal-cancel {
    background: none;
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
}

.modal-cancel { font-weight: 400; }

.modal-scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-section {
    padding: 16px;
}

.modal-hint {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* ===== Lead Detail ===== */
.detail-top {
    text-align: center;
    padding: 20px 16px 16px;
}

.detail-star-row {
    display: flex;
    justify-content: flex-end;
    padding-right: 4px;
    margin-bottom: -8px;
}

.detail-star-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-tertiary);
    cursor: pointer;
}

.detail-star-btn.starred { color: var(--yellow); }

.detail-name {
    font-size: 28px;
    font-weight: 700;
}

.detail-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.detail-pending-icon {
    font-size: 36px;
    color: var(--orange);
}

.detail-section {
    padding: 0 16px 16px;
}

.detail-section-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 12px 0 6px;
}

.detail-group {
    background: var(--black);
    border-radius: var(--radius);
    overflow: hidden;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 16px;
    border-bottom: 1px solid var(--separator);
}

.detail-row:last-child { border-bottom: none; }

.detail-label {
    font-size: 15px;
    color: var(--text-secondary);
}

.detail-value {
    font-size: 15px;
    color: var(--text);
    cursor: pointer;
    transition: color 0.15s;
}

.detail-value:hover { color: #8BC5EA; }
.detail-value.copied { color: var(--green); }

.detail-address {
    padding: 11px 16px;
    font-size: 15px;
    line-height: 1.5;
}

.card-image-wrap {
    padding: 8px 16px;
    text-align: center;
}

.card-image {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    cursor: pointer;
}

.card-image:hover { opacity: 0.85; }

.no-card {
    padding: 16px;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 14px;
}


.notes-area {
    display: block;
    width: calc(100% - 32px);
    margin: 0 16px 8px;
    min-height: 80px;
    padding: 10px 12px;
    background: var(--black);
    border: none;
    border-radius: var(--radius);
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    outline: none;
}

.notes-area:focus { background: var(--black-elevated); }

/* Toggles */
.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid var(--separator);
}

.toggle-row:last-child { border-bottom: none; }

.toggle-name {
    font-size: 15px;
}

.toggle-switch {
    position: relative;
    width: 51px;
    height: 31px;
    flex-shrink: 0;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; position: absolute; }

.toggle-track {
    position: absolute;
    inset: 0;
    background: var(--black-tertiary);
    border-radius: 16px;
    transition: background 0.25s;
    cursor: pointer;
}

.toggle-track::before {
    content: '';
    position: absolute;
    width: 27px;
    height: 27px;
    left: 2px;
    top: 2px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-track {
    background: var(--green);
}

.toggle-switch input:checked + .toggle-track::before {
    transform: translateX(20px);
}

/* ===== Settings ===== */
.settings-scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 24px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.settings-header {
    text-align: center;
    padding: 20px 0 16px;
}

.settings-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 6px;
}

.settings-event {
    font-size: 20px;
    font-weight: 700;
}

.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    background: rgba(63, 109, 138, 0.25);
    border: none;
    border-radius: 12px;
    color: var(--text);
    cursor: pointer;
    transition: background 0.15s;
}

.tile:hover { background: rgba(63, 109, 138, 0.35); }

.tile-danger { background: rgba(255,59,48,0.2); }
.tile-danger:hover { background: rgba(255,59,48,0.3); }

.tile-icon { font-size: 24px; }

.tile-title {
    font-size: 15px;
    font-weight: 600;
}

.tile-sub {
    font-size: 12px;
    color: var(--text-secondary);
}


.settings-footer {
    text-align: center;
    padding-top: 8px;
}

.footer-line {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

/* ===== Toggle Editor ===== */
.te-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
}

.te-num {
    font-size: 13px;
    color: var(--text-secondary);
    width: 24px;
    text-align: right;
    flex-shrink: 0;
}

.te-input {
    flex: 1;
    padding: 10px 12px;
    background: var(--black);
    border: none;
    border-radius: var(--radius);
    color: var(--text);
    font-size: 15px;
    outline: none;
}

.te-input:focus { background: var(--black-elevated); }

/* ===== Form Input ===== */
.form-input {
    width: 100%;
    padding: 12px 14px;
    background: var(--black);
    border: none;
    border-radius: var(--radius);
    color: var(--text);
    font-size: 17px;
    outline: none;
}

.form-input:focus { background: var(--black-elevated); }

/* ===== Alert Box ===== */
.alert-box {
    background: var(--black-secondary);
    border-radius: 14px;
    width: 270px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    margin: auto;
}

.alert-title {
    font-size: 17px;
    font-weight: 600;
    padding: 20px 16px 4px;
}

.alert-message {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 16px 16px;
    line-height: 1.4;
}

.alert-actions {
    display: flex;
    border-top: 1px solid var(--separator);
}

.alert-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: #8BC5EA;
    font-size: 17px;
    cursor: pointer;
    border-right: 1px solid var(--separator);
}

.alert-btn:last-child { border-right: none; }
.alert-btn:hover { background: var(--black-tertiary); }

.alert-btn-danger { color: var(--red); font-weight: 600; }

/* ===== Alert Message (inline) ===== */
.alert-msg {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 14px;
}

.alert-msg.success { background: rgba(52,199,89,0.2); color: var(--green); }
.alert-msg.error { background: rgba(255,59,48,0.2); color: var(--red); }

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background: var(--black-secondary);
    color: var(--text);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    z-index: 300;
    animation: toastIn 0.3s ease;
    white-space: nowrap;
}

.toast.success { background: var(--green); color: #fff; }
.toast.error { background: var(--red); color: #fff; }

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

/* ===== Guide View ===== */
.guide-scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 24px;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.guide-content {
    padding-top: 8px;
}

.guide-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 24px 0 12px;
}

.guide-heading:first-child {
    margin-top: 8px;
}

/* Icon cards (Getting Started, Syncing) */
.guide-icon-card {
    background: var(--black-elevated);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.guide-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 16px;
}

.guide-icon-body {
    flex: 1;
    min-width: 0;
}

.guide-icon-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.guide-icon-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

.guide-icon-card strong {
    color: var(--text);
    font-weight: 600;
}

/* Feature tiles (Exporting, Matched/Pending) */
.guide-tile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 8px;
}

.guide-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    background: var(--black-elevated);
    border-radius: 12px;
    text-align: center;
}

.guide-tile-icon {
    font-size: 28px;
}

.guide-tile-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.guide-tile-sub {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Tip cards */
.guide-tip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: var(--black-elevated);
    border-radius: 10px;
    margin-bottom: 6px;
}

.guide-tip i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    padding-top: 1px;
}

.guide-tip span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
    .detail-name { font-size: 22px; }
}
