/* ═══════════════════════════════════════════════════
   PyMail — Lightweight Email Client Styles
   All bugs fixed, fully tested
   ═══════════════════════════════════════════════════ */

:root {
    --bg-primary: #0f0f17;
    --bg-secondary: #161622;
    --bg-tertiary: #1c1c2e;
    --bg-hover: #22223a;
    --bg-active: #2a2a48;
    --bg-card: #1a1a2e;
    --border: #2a2a42;
    --border-light: #33335a;
    --text-primary: #e8e8f0;
    --text-secondary: #9898b4;
    --text-tertiary: #5c5c7a;
    --accent: #6c63ff;
    --accent-hover: #7b73ff;
    --accent-muted: rgba(108, 99, 255, 0.12);
    --danger: #ff4d6a;
    --success: #3dd68c;
    --warning: #ffb347;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --transition: 150ms ease;
    /* Font fallbacks in case Google Fonts fails to load */
    --font-main: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
}

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

html {
    height: 100%;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* FIX: app-page body needs explicit height for flexbox children */
body.app-page {
    height: 100vh;
    overflow: hidden;
}

/* ─── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-light); }

/* ═══════════════════════════════════════════════════
   Auth Pages (login, register, 2fa settings)
   ═══════════════════════════════════════════════════ */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(108, 99, 255, 0.08), transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(108, 99, 255, 0.05), transparent 50%),
        var(--bg-primary);
}

.auth-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 24px;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.auth-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-footer-text {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════
   Forms
   ═══════════════════════════════════════════════════ */

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239898b4' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* FIX: checkbox label used outside .form-group */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 12px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* FIX: import textarea class */
.import-textarea {
    width: 100%;
    padding: 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    resize: vertical;
    outline: none;
}

.import-textarea:focus {
    border-color: var(--accent);
}

/* ═══════════════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    color: var(--text-primary);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-hover); color: var(--text-primary); }

.btn-danger {
    background: var(--danger);
    color: #fff;
}
.btn-danger:hover { opacity: 0.9; }

.btn-full { width: 100%; }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; }

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 1.3rem;
    line-height: 1;
}
.icon-btn:hover { background: var(--bg-hover); color: var(--text-primary); }

/* ═══════════════════════════════════════════════════
   Alerts
   ═══════════════════════════════════════════════════ */

.alert {
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    margin-bottom: 16px;
}
.alert-error {
    background: rgba(255, 77, 106, 0.12);
    color: var(--danger);
    border: 1px solid rgba(255, 77, 106, 0.2);
}
.alert-success {
    background: rgba(61, 214, 140, 0.12);
    color: var(--success);
    border: 1px solid rgba(61, 214, 140, 0.2);
}

/* ═══════════════════════════════════════════════════
   2FA Page
   ═══════════════════════════════════════════════════ */

.tfa-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.tfa-enabled { background: rgba(61, 214, 140, 0.08); border: 1px solid rgba(61, 214, 140, 0.2); }
.tfa-disabled { background: rgba(255, 179, 71, 0.08); border: 1px solid rgba(255, 179, 71, 0.2); }
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--warning);
    flex-shrink: 0;
}
.status-dot.active { background: var(--success); }
.secret-key {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    padding: 10px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    text-align: center;
    word-break: break-all;
    color: var(--accent);
    border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════
   App Layout (Inbox Page)
   ═══════════════════════════════════════════════════ */

.app-layout {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* ─── Sidebar ────────────────────────────────────── */

.sidebar {
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex-shrink: 0;
}

.sidebar-header {
    padding: 16px 16px 12px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.logo-small {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-compose {
    margin: 12px 12px 4px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius);
    padding: 10px;
    font-weight: 600;
    flex-shrink: 0;
}
.btn-compose:hover { background: var(--accent-hover); }
.btn-compose:disabled { opacity: 0.4; cursor: not-allowed; }

.sidebar-section {
    padding: 8px 0;
}

.sidebar-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-tertiary);
    letter-spacing: 1.2px;
    padding: 8px 16px 4px;
    display: flex;
    align-items: center;
}

/* ─── Account List ───────────────────────────────── */

.account-list {
    max-height: 300px;
    overflow-y: auto;
}

.account-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    cursor: pointer;
    transition: background var(--transition);
    border-left: 3px solid transparent;
}
.account-item:hover { background: var(--bg-hover); }
.account-item.active {
    background: var(--accent-muted);
    border-left-color: var(--accent);
}

.account-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.account-info {
    min-width: 0;
    flex: 1;
}
.account-name {
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.account-email {
    font-size: 0.72rem;
    color: var(--text-tertiary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* FIX: account delete button */
.account-delete-btn {
    background: none;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    opacity: 0;
    transition: all var(--transition);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    line-height: 1;
}
.account-item:hover .account-delete-btn { opacity: 1; }
.account-delete-btn:hover { color: var(--danger); background: rgba(255, 77, 106, 0.1); }

.btn-add-account {
    display: flex;
    align-items: center;
    gap: 8px;
    width: calc(100% - 24px);
    margin: 4px 12px;
    padding: 8px 12px;
    background: transparent;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-add-account:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-muted);
}

/* ─── Folder List ────────────────────────────────── */

.folder-list { padding: 0 4px; }
.folder-item {
    padding: 7px 16px;
    font-size: 0.82rem;
    cursor: pointer;
    border-radius: 6px;
    margin: 1px 8px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.folder-item:hover { background: var(--bg-hover); }
.folder-item.active { background: var(--accent-muted); color: var(--accent); }

/* ─── Sidebar Bottom ─────────────────────────────── */

.sidebar-bottom {
    margin-top: auto;
    padding: 8px 12px 12px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    border-radius: 6px;
    transition: all var(--transition);
}
.sidebar-link:hover { background: var(--bg-hover); color: var(--text-primary); }

/* FIX: sidebar-link used as <button> needs reset */
button.sidebar-link,
button.sidebar-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    width: 100%;
    text-align: left;
}

/* ═══════════════════════════════════════════════════
   Main Content Area
   ═══════════════════════════════════════════════════ */

.main-content {
    flex: 1;
    display: flex;
    min-width: 0;
    overflow: hidden;
}

/* ─── Email List Panel ───────────────────────────── */

.email-list-panel {
    width: 380px;
    min-width: 300px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    flex-shrink: 0;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
    flex-shrink: 0;
}

.panel-title {
    font-size: 0.92rem;
    font-weight: 600;
}

.panel-actions {
    display: flex;
    gap: 4px;
}

/* ─── Search Bar ─────────────────────────────────── */

.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
    flex-shrink: 0;
}
.search-bar input {
    flex: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 7px 12px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.85rem;
    outline: none;
}
.search-bar input:focus { border-color: var(--accent); }

/* ─── Email List ─────────────────────────────────── */

.email-list {
    flex: 1;
    overflow-y: auto;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
    color: var(--text-tertiary);
    text-align: center;
    gap: 16px;
}
.empty-state p { font-size: 0.9rem; }

.email-row {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background var(--transition);
}
.email-row:hover { background: var(--bg-hover); }
.email-row.active { background: var(--accent-muted); }
.email-row.unread { border-left: 3px solid var(--accent); }
.email-row.unread .email-sender { font-weight: 600; color: var(--text-primary); }

.email-sender-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: #fff;
    flex-shrink: 0;
    background: var(--bg-active);
}

.email-preview { min-width: 0; flex: 1; }
.email-sender {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.email-subject {
    font-size: 0.84rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}
.email-date {
    font-size: 0.72rem;
    color: var(--text-tertiary);
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 2px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    font-size: 0.8rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   Email Detail Panel
   ═══════════════════════════════════════════════════ */

.email-detail-panel {
    flex: 1;
    overflow-y: auto;
    background: var(--bg-primary);
    min-width: 0;
}

.detail-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-tertiary);
    gap: 16px;
}

.detail-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.detail-subject {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.detail-meta {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.detail-from-name { font-weight: 600; font-size: 0.92rem; }
.detail-from-addr { font-size: 0.8rem; color: var(--text-secondary); }
.detail-to { font-size: 0.8rem; color: var(--text-tertiary); margin-top: 2px; }
.detail-date { font-size: 0.78rem; color: var(--text-tertiary); margin-left: auto; white-space: nowrap; }

.detail-actions {
    display: flex;
    gap: 8px;
    padding: 12px 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.detail-body {
    padding: 20px 24px;
    font-size: 0.92rem;
    line-height: 1.7;
}

.detail-body iframe {
    width: 100%;
    border: none;
    min-height: 400px;
    background: #fff;
    border-radius: var(--radius);
}

.detail-body pre {
    white-space: pre-wrap;
    word-break: break-word;
    font-family: var(--font-main);
}

.detail-attachments {
    padding: 12px 24px 20px;
    border-top: 1px solid var(--border);
}
.detail-attachments h4 {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.attachment-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-tertiary);
    border-radius: 6px;
    font-size: 0.8rem;
    margin: 2px 4px 2px 0;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════
   Modals
   ═══════════════════════════════════════════════════ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
}
.modal-overlay.show { display: flex; }

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow);
}
.modal-compose { max-width: 640px; }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--bg-card);
    z-index: 1;
}
.modal-header h2 {
    font-size: 1.05rem;
    font-weight: 600;
}

.modal-body { padding: 20px; }

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* FIX: provider presets need flex-wrap for small screens */
.provider-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.preset-btn {
    padding: 6px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
}
.preset-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-muted);
}

/* ═══════════════════════════════════════════════════
   Loading Spinner
   ═══════════════════════════════════════════════════ */

.spinner {
    width: 24px;
    height: 24px;
    border: 2.5px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

/* ═══════════════════════════════════════════════════
   Toast Notifications
   ═══════════════════════════════════════════════════ */

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    box-shadow: var(--shadow);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-success { border-color: rgba(61, 214, 140, 0.3); color: var(--success); }
.toast-error { border-color: rgba(255, 77, 106, 0.3); color: var(--danger); }
.toast-info { border-color: rgba(108, 99, 255, 0.3); color: var(--accent); }

/* ═══════════════════════════════════════════════════
   Count Badge
   ═══════════════════════════════════════════════════ */

.count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--accent-muted);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 600;
    margin-left: 6px;
}

/* ═══════════════════════════════════════════════════
   Keyboard Hints
   ═══════════════════════════════════════════════════ */

.shortcuts-hint {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--text-tertiary);
}
.shortcuts-hint span {
    display: flex;
    align-items: center;
    gap: 4px;
}

kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .sidebar { width: 220px; min-width: 220px; max-width: 220px; }
    .email-list-panel { width: 320px; min-width: 280px; }
}

@media (max-width: 768px) {
    .app-layout { flex-direction: column; }
    .sidebar {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: auto;
        max-height: 180px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .main-content { flex-direction: column; flex: 1; }
    .email-list-panel {
        width: 100% !important;
        min-width: 100% !important;
        max-height: 40vh;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .email-detail-panel { min-height: 50vh; }
    .form-row { grid-template-columns: 1fr; }
    .sidebar-bottom { display: none; }
}
