:root {
    --bg-color: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --accent-blue: #2563eb;
    --accent-red: #ef4444;
    --accent-yellow: #f59e0b;
    --accent-green: #10b981;
    --border-color: #e2e8f0;
    --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.05);
    --shadow-hover: 0 10px 40px rgba(15, 23, 42, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

.tracker-ui {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    border-bottom: 1px solid var(--border-color);
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.brand-text .light {
    font-weight: 300;
    color: var(--text-secondary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.user-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Header Treadmill Stats */
.header-stats {
    display: flex;
    gap: 8px;
    margin-right: 8px;
}

.header-pill {
    background: #f1f3f4;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 85px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    line-height: 1.2;
}

.header-pill:hover {
    background: #e8eaed;
    border-color: var(--accent-blue);
    transform: translateY(-1px);
}

.header-pill.show-avg {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

.header-pill .pill-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    font-weight: 600;
}

.header-pill.show-avg .pill-label {
    color: rgba(255, 255, 255, 0.8);
}

.header-pill .pill-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.header-pill.show-avg .pill-value {
    display: none;
}

.header-pill .pill-avg {
    font-size: 13px;
    font-weight: 600;
}

.header-pill.show-avg .pill-avg {
    display: block !important;
}

.weight-pill {
    background: #f8f9fa;
    padding: 6px 16px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    border: 1px solid var(--border-color);
}

.weight-pill label {
    color: var(--text-secondary);
    font-weight: 400;
}

.weight-pill input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    width: 35px;
    text-align: center;
    font-family: inherit;
    font-weight: 600;
}

.weight-pill input:focus {
    outline: none;
    border-bottom: 1px solid var(--accent-blue);
}

.weight-pill select {
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-blue);
    cursor: pointer;
    outline: none;
}

.user-profile {
    display: flex;
    align-items: center;
    position: relative;
}

.profile-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e8f0fe;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-blue);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.profile-pill:hover {
    background: #d2e3fc;
    border-color: #aecbfa;
}

.profile-pill .chevron {
    font-size: 10px;
    opacity: 0.7;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    min-width: 180px;
    z-index: 1000;
    overflow: hidden;
    animation: slideUp 0.2s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item {
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.2s;
}

.menu-item:hover {
    background: #f8f9fa;
}

.menu-item.active {
    background: #e8f0fe;
    color: var(--accent-blue);
    font-weight: 600;
}

.menu-divider {
    height: 1px;
    background: var(--border-color);
    margin: 4px 0;
}

.menu-item.add-btn {
    color: var(--accent-blue);
    font-weight: 500;
}

.text-link {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.text-link:hover {
    color: var(--accent-blue);
}

.text-link.danger {
    color: #dadce0;
}

.text-link.danger:hover {
    color: var(--accent-red);
}

.download-btn {
    background: #000;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, background 0.2s;
}

.download-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
    gap: 60px;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    max-width: 800px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(90deg, #4285f4, #34a853);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Metrics Layout */
.metrics-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.metrics-row-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.row-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    opacity: 0.8;
}

.metrics-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.metrics-row.secondary {
    gap: 20px;
}

.stat-circle {
    width: 180px;
    height: 180px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    cursor: default;
    position: relative;
    animation: floating 6s ease-in-out infinite;
}

.stat-circle:nth-child(2n) {
    animation-delay: -1s;
}

.stat-circle:nth-child(3n) {
    animation-delay: -2s;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stat-circle:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-blue);
    z-index: 10;
}

.stat-circle .icon {
    margin-bottom: 12px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.stat-circle:hover .icon {
    color: var(--accent-blue);
}

.stat-circle .data {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-circle .data span {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}

.stat-circle .data label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Small Variant for bottom row */
.stat-circle.small {
    width: 145px;
    height: 145px;
    animation-duration: 8s;
}

.stat-circle.small .icon {
    margin-bottom: 6px;
}

.stat-circle.small .icon svg {
    width: 20px;
    height: 20px;
}

.stat-circle.small .data span {
    font-size: 24px;
}

.stat-circle.small .data label {
    font-size: 9px;
}

/* Footer & Status */
.action-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: auto;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    background: #f8f9fa;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.status-indicator .dot {
    width: 8px;
    height: 8px;
    background: #9aa0a6;
    border-radius: 50%;
    transition: background 0.3s;
}

.connected .dot {
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.button-group {
    display: flex;
    gap: 16px;
}

.start-btn {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(52, 168, 83, 0.4);
    transition: transform 0.2s, background 0.2s;
}

.start-btn:hover {
    background: #2e964a;
    transform: scale(1.05);
}

.minimal-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.minimal-btn:hover {
    background: #f8f9fa;
    color: var(--text-primary);
}

.save-btn {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(66, 133, 244, 0.4);
    transition: transform 0.2s, background 0.2s;
}

.save-btn:hover {
    background: #1a73e8;
    transform: scale(1.05);
}

/* History Section */
.history-section {
    width: 100%;
    max-width: 1000px;
    margin-top: 60px;
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.history-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.daily-badges {
    display: flex;
    gap: 16px;
}

.badge {
    background: #f8f9fa;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.badge span {
    color: var(--accent-blue);
    font-weight: 600;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

th {
    text-align: left;
    padding: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 2px solid #f1f3f4;
}

td {
    padding: 16px 12px;
    border-bottom: 1px solid #f1f3f4;
}

tr:last-child td {
    border-bottom: none;
}

/* Debug Drawer */
.debug-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    transform: translateY(calc(100% - 40px));
    transition: transform 0.3s ease;
    z-index: 1000;
}

.debug-drawer.open {
    transform: translateY(0);
}

.drawer-handle {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 500;
    background: #f1f3f4;
}

.version-tag {
    font-size: 10px;
    opacity: 0.6;
    font-family: monospace;
}

.drawer-content {
    padding: 24px 40px;
    font-family: monospace;
    font-size: 12px;
    color: #666;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.hex-log {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    white-space: pre-wrap;
    max-height: 100px;
    overflow-y: auto;
}

.hidden {
    display: none !important;
}

.error-toast {
    background: #ea4335;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(234, 67, 53, 0.3);
    z-index: 2000;
}

/* Modal Styling */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    padding: 32px;
    /* Slightly reduced */
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    max-width: 440px;
    width: 90%;
    max-height: 90vh;
    /* Prevent off-screen */
    overflow-y: auto;
    /* Enable scroll if needed */
    text-align: center;
    border: 1px solid var(--border-color);
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.modal-content p {
    color: var(--text-secondary);
    font-size: 15px;
    /* Slightly smaller */
    margin-bottom: 24px;
    /* Reduced margin */
}

.tracker-logo-text {
    color: var(--accent-blue);
    font-weight: 700;
}

#onboarding-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.modal-content input,
.modal-content select {
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.2s;
}

.modal-content input:focus,
.modal-content select:focus {
    outline: none;
    border-color: var(--accent-blue);
}

/* Strava Specific */
.strava-orange {
    color: #fc4c02;
}

.strava-bg {
    background: #fc4c02 !important;
}

.strava-btn {
    background: #fc4c02;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.strava-btn:hover {
    background: #e34402;
    transform: translateY(-1px);
}

.strava-icon {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.api-guide {
    background: #fff5f2;
    padding: 12px;
    border-radius: 8px;
    font-size: 11px;
    color: #b33902;
    text-align: left;
    border: 1px solid #ffdec2;
    margin-bottom: 20px;
}

.api-guide code {
    background: white;
    padding: 2px 4px;
    border-radius: 4px;
    border: 1px solid #ffdec2;
}

.strava-btn.syncing {
    opacity: 0.7;
    cursor: wait;
}

.strava-btn.success {
    background: var(--accent-green);
}

/* Recovery Banner */
.recovery-banner {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 12px 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-soft);
    animation: fadeIn 0.4s ease;
}

.banner-actions {
    display: flex;
    gap: 20px;
}

/* Quest Map */

.icon-btn {
    background: #f1f3f5;
    border: none;
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
    color: var(--text-primary);
    transition: background 0.2s;
}

.icon-btn:hover {
    background: #e9ecef;
}


.hidden {
    display: none !important;
}


.hud-stat label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.hud-stat .val {
    font-size: 32px;
    font-weight: 700;
}

.hud-stat .val small {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
}

.mode-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 24px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.mode-toggle-btn.active {
    border-color: #fc4c02;
    background: rgba(252, 76, 2, 0.2);
}

.mode-toggle-btn .mode-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.mode-toggle-btn .mode-val {
    font-size: 18px;
    font-weight: 700;
}

.exit-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(8px);
}

/* Fullscreen Logic */
.quest-container.fullscreen {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    padding: 0;
    border-radius: 0;
    margin: 0;
    border: none;
}

.quest-container.fullscreen #quest-map {
    height: 100vh;
    border-radius: 0;
}

.quest-container.fullscreen .quest-header {
    display: none;
    /* Hide header in HUD mode */
}

/* Leaflet Overrides for Premium Look */
.quest-container.wide {
    max-width: 100%;
}




/* Animations & Markers */
.quest-marker-icon {
    background: #fc4c02;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(252, 76, 2, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.quest-active-path {
    filter: drop-shadow(0 0 5px rgba(252, 76, 2, 0.5));
}

@keyframes pulse-orange {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* GPX Button Polish */
label[for="gpx-upload"] {
    display: inline-block;
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

label[for="gpx-upload"]:hover {
    background: white;
    box-shadow: var(--shadow-soft);
    border-color: #fc4c02;
}

/* Settings Modal Specific */
.settings-section {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.settings-section:last-of-type {
    border-bottom: none;
}

.settings-section h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.api-guide {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 12px;
    text-align: left;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
        flex-direction: column;
        gap: 12px;
    }

    .hero {
        padding: 40px 20px;
        gap: 40px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .stats-orbit {
        gap: 16px;
    }

    .stat-circle {
        width: 150px;
        height: 150px;
    }

    .stat-circle .data span {
        font-size: 24px;
    }

    .stat-circle .data label {
        font-size: 10px;
    }

    .history-section {
        padding: 20px;
        margin-top: 40px;
    }

    .history-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .daily-badges {
        width: 100%;
        justify-content: space-between;
    }

    .badge {
        flex: 1;
        text-align: center;
        font-size: 11px;
        padding: 6px 8px;
    }

    .button-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .start-btn,
    .save-btn,
    .minimal-btn {
        width: 100%;
        padding: 12px;
    }
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

.share-btn svg {
    opacity: 0.8;
}

.share-btn:hover {
    color: var(--accent-blue) !important;
}

/* Share Modal Enhancements */
.share-modal-content {
    max-width: 400px;
}

.share-options-groups {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.option-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.segmented-control {
    display: flex;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4px;
    gap: 4px;
}

.segmented-control button {
    flex: 1;
    background: transparent;
    border: none;
    padding: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.segmented-control button.active {
    background: white;
    color: var(--accent-blue);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.segmented-control button:hover:not(.active) {
    background: rgba(0, 0, 0, 0.02);
}