/* ════ THEME TOKENS (EXACT APK COLORS) ════ */
:root {
    --bg: #0F121C;
    --card: #1E2230;
    --primary: #4A90E2;
    --text: #ffffff;
    --dim: rgba(255, 255, 255, 0.6);
    --border: rgba(255, 255, 255, 0.08);
    --glass: blur(20px);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    --nav-bg: #1E2230;
    --fab-bg: #4A90E2;
    --bg-img: url('../assets/diary_mountain_bg.png');
}

[data-theme="cozy"] {
    --bg: #2D1810;
    --card: #4A2F1F;
    --primary: #D4835C;
    --text: #E6D5B8;
    --dim: rgba(230, 213, 184, 0.6);
    --nav-bg: #4A2F1F;
    --fab-bg: #D4835C;
    --bg-img: url('../assets/diary_cozy_bg.png');
}

[data-theme="purple"] {
    --bg: #1A0F2E;
    --card: #2D1B4E;
    --primary: #9B6DD6;
    --text: #E0D8F0;
    --dim: rgba(224, 216, 240, 0.6);
    --nav-bg: #2D1B4E;
    --fab-bg: #9B6DD6;
    --bg-img: url('../assets/diary_purple_bg.png');
}

[data-theme="forest"] {
    --bg: #0F1F14;
    --card: #1A3023;
    --primary: #4CAF50;
    --text: #D8E6D8;
    --dim: rgba(216, 230, 216, 0.6);
    --nav-bg: #1A3023;
    --fab-bg: #4CAF50;
    --bg-img: url('../assets/diary_forest_bg.png');
}

/* ════ RESET & BASE ════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.4s ease;
    position: relative;
}

/* ════ UTILS ════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    padding: 8px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
}

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

/* ════ TOP HEADER & BG ════ */
#toolHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    z-index: 1000;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 600px;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center top;
    z-index: 1;
    /* Above body bg, below content */
    opacity: 0.8;
    pointer-events: none;
}

.header-fade {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 600px;
    background: linear-gradient(to bottom,
            rgba(var(--bg-rgb), 0) 0%,
            rgba(var(--bg-rgb), 0.2) 25%,
            rgba(var(--bg-rgb), 0.6) 55%,
            rgba(var(--bg-rgb), 0.9) 85%,
            var(--bg) 100%);
    z-index: 2;
    /* Just above the image */
    pointer-events: none;
}

/* ════ LANDING VIEW ════ */
#landingView {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.landing-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.navbar {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero {
    padding: 100px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 18px;
    color: var(--dim);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.btn-hero {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.feature-card {
    background: var(--card);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--dim);
    font-size: 14px;
    line-height: 1.6;
}

.landing-footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--dim);
    font-size: 14px;
}

/* ════ AUTH VIEW ════ */
.auth-page-overlay {
    position: fixed;
    inset: 0;
    background: rgba(var(--bg-rgb), 0.7);
    backdrop-filter: blur(10px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.4s ease;
}

.auth-card {
    background: var(--card);
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

#authTitle {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

#authSubtitle {
    font-size: 14px;
    color: var(--dim);
    margin-bottom: 32px;
    text-align: center;
}

.auth-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.auth-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    color: var(--dim);
    transition: 0.2s;
}

.auth-tab.active {
    background: var(--primary);
    color: #fff;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--dim);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
}

input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

/* ════ TOOL LAYOUT ════ */
.tool-content {
    flex: 1;
    position: relative;
    overflow-y: auto;
    padding-bottom: 100px;
    z-index: 5;
    /* Lower than parent's relative children but higher than bg */
}

#toolView {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.tab-view {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-view.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ════ SIDE DRAWER ════ */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 5000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer-overlay.active {
    display: block;
    opacity: 1;
}

.drawer-content {
    width: 280px;
    height: 100%;
    background: var(--bg);
    border-right: 1px solid var(--border);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.drawer-overlay.active .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    padding: 40px 24px;
    background: var(--card);
    display: flex;
    align-items: center;
    gap: 16px;
}

.drawer-logo-icon {
    font-size: 32px;
    color: var(--dim);
}

.drawer-logo-text {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
}

.drawer-menu {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
}

.menu-item {
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.menu-item i {
    width: 24px;
    text-align: center;
    color: var(--dim);
    font-size: 18px;
}

.menu-item.pro i {
    color: #FFD700;
}

.menu-item.pro {
    color: #FFD700;
    font-weight: 600;
}

.menu-item.ai i {
    color: var(--primary);
}

.menu-item.signout {
    color: #ff4a49;
    margin-top: auto;
}

.menu-item.signout i {
    color: #ff4a49;
}

.menu-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 24px;
}

.menu-section-label {
    padding: 16px 24px 8px;
    font-size: 12px;
    color: var(--dim);
    text-transform: uppercase;
    font-weight: 700;
}

.badge {
    background: #FFD700;
    color: #000;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
    margin-left: auto;
}

/* ════ CALENDAR ════ */
.calendar-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#calendarWidget {
    padding: 0 16px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.cal-day-name {
    font-size: 12px;
    color: var(--dim);
    padding-bottom: 12px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.cal-day.today {
    border: 1px solid var(--primary);
}

.cal-day.selected {
    background: var(--primary);
    color: #fff;
}

.cal-day.has-entry::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
}

/* ════ STATISTICS ════ */
.stats-scroll {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stats-card {
    background: var(--card);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--border);
}

.diary-status-card {
    background: linear-gradient(135deg, var(--primary), #6366f1);
    color: #fff;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-card h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text);
}

#weeklyHeatmap {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.heat-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.heat-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.heat-circle.active {
    background: rgba(var(--primary-rgb), 0.2);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 700;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 10px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.3;
}

.badge-item.unlocked {
    opacity: 1;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.badge-item.unlocked .badge-icon {
    border: 2px solid #fbbf24;
}

.badge-name {
    font-size: 10px;
    color: var(--dim);
    text-align: center;
}

/* ════ PROMO TILES ════ */
.promo-tiles {
    margin-top: 10px;
}

.promo-tile {
    background: var(--card);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    border: 1px solid var(--border);
}

.promo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.promo-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.promo-info p {
    font-size: 12px;
    color: var(--dim);
}

.promo-tile i:last-child {
    margin-left: auto;
    color: var(--border);
}

/* ════ PROFILE ════ */
.profile-header {
    padding: 60px 24px 40px;
    text-align: center;
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
}

.profile-header h2 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.profile-menu {
    padding: 12px 0;
}

.profile-menu .menu-item i {
    color: var(--primary);
}

/* ════ TIMELINE ════ */
.tool-container {
    padding-top: 80px;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ════ HABIT CHALLENGE CARD ════ */
.habit-challenge-card {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    margin: 0 16px;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.challenge-info {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.challenge-icon {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.challenge-text h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    opacity: 0.9;
}

.challenge-text h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.challenge-text p {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
}

.challenge-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bear-emoji {
    font-size: 48px;
}

.btn-close-challenge {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 18px;
}

.year-divider {
    padding: 32px 16px 12px;
    font-size: 24px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: -0.5px;
}

.entry-card {
    background: var(--card);
    margin: 8px 16px;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 44px;
}

.card-date .day {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.card-date .month {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dim);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.card-content h3 {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-content p {
    font-size: 14px;
    color: var(--dim);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

/* ════ MOOD PICKER ════ */
.mood-picker-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000;
}

.mood-picker-overlay.active {
    display: flex;
}

.mood-grid {
    background: var(--card);
    padding: 24px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 90%;
}

.mood-item {
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.2s;
}

.mood-item:hover {
    transform: scale(1.2);
}

/* ════ THEME PICKER ════ */
.theme-picker {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.theme-swatch {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.theme-swatch.active {
    border-color: var(--primary);
}

.swatch-mountain {
    background: #0F121C;
    color: #4A90E2;
}

.swatch-cozy {
    background: #2D1810;
    color: #D4835C;
}

.swatch-purple {
    background: #1A0F2E;
    color: #9B6DD6;
}

.swatch-forest {
    background: #0F1F14;
    color: #4CAF50;
}


.card-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.mood-emoji {
    font-size: 24px;
}

.star-icon {
    color: #FFD700;
    font-size: 16px;
}

/* ════ BOTTOM NAV (NOTCHED STYLE) ════ */
.bottom-nav-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
    z-index: 1000;
}

.bottom-nav {
    width: 100%;
    height: 64px;
    background: var(--card);
    display: flex;
    justify-content: space-around;
    align-items: center;
    pointer-events: auto;
    /* Deeper, more organic smooth notch curve */
    clip-path: polygon(0% 0%,
            30% 0%,
            34% 1%,
            37% 5%,
            40% 15%,
            42% 35%,
            44% 65%,
            50% 75%,
            56% 65%,
            58% 35%,
            60% 15%,
            63% 5%,
            66% 1%,
            70% 0%,
            100% 0%,
            100% 100%,
            0% 100%);
    position: relative;
    border-top: 1px solid var(--border);
}

.bottom-nav::before {
    content: '';
    position: absolute;
    top: 24px;
    /* Repositioned for APK parity */
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.nav-item {
    background: none;
    border: none;
    color: var(--dim);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 4px;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-item i {
    font-size: 20px;
}

.nav-item.active {
    color: var(--primary);
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.nav-spacer {
    flex: 1;
    max-width: 80px;
}

/* Space for FAB */

.fab-btn {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--fab-bg);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    z-index: 1001;
    pointer-events: auto;
    transition: 0.3s;
}

.fab-btn:active {
    transform: translateX(-50%) scale(0.9);
}

/* ════ PRO TAG ════ */
.pro-tag {
    background: #4A90E2;
    padding: 6px 16px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    transition: 0.3s;
}

.pro-tag:active {
    transform: scale(0.95);
}

/* ════ QUICK ACTIONS SHEET ════ */
#quickActionsSheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-radius: 24px 24px 0 0;
    padding-bottom: 24px;
    z-index: 2000;
    transition: bottom 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#quickActionsSheet.active {
    bottom: 0;
}

.sheet-handle {
    width: 40px;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin: 12px 0;
}

.sheet-content {
    width: 100%;
    padding: 0 24px 24px;
}

.sheet-content h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.action-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.action-item span {
    font-size: 12px;
    color: var(--dim);
    font-weight: 600;
}

/* ════ MODALS ════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: flex-end;
    justify-content: center;
    z-index: 3000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    width: 100%;
    max-width: 600px;
    background: var(--bg);
    border-radius: 24px 24px 0 0;
    padding: 20px;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .bottom-nav {
        clip-path: polygon(0% 0%, 30% 0%, 35% 5%, 40% 40%, 60% 40%, 65% 5%, 70% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .nav-spacer {
        max-width: 64px;
    }
}