@media (min-width: 992px) {
    .info-popup-wrapper {
        max-width: 30%;
        right: 0;
        height: 100vh;
        margin-top: 1rem;
        margin-right: 1rem;
        display: flex;
        justify-content: end;
    }

    .getting-location-popup {
        margin-top: 0;
    }

    .info-next-stops {
        max-height: 100%;
        margin-bottom: 1rem;
    }

    .route-selectors {
        flex-direction: column;
        position: fixed;
        top: 0;
        row-gap: 0.5rem;
        text-align: center;
    }

    .settings-btn {
        padding: 1rem 2rem !important;
        aspect-ratio: auto;
    }

    .route-selector:first-child {
        margin-right: 0; /* For settings */
    }

    .route-selector:last-child {
        margin-right: 0rem; /* For parking campus selector */
    }

    .route-selector[routename="fav"] {
        padding: 1rem !important;
        aspect-ratio: auto !important;
    }

    .route-selector.parking-campus-selector {
        aspect-ratio: auto !important;
    }

    .left-btns {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 0.8rem;
        margin-left: 1rem;
    }

    .left-btns > div {
        margin-bottom: 1rem;
        align-items: center;
        width: auto;
        justify-content: center;
    }

    .buses-panel-wrapper {
        height: auto;
        width: 33%;
        margin: 2rem;
        border-radius: 1rem;
    }

    .bus-info-popup {
        height: 100%;
    }

    .bus-info-main-wrapper {
        margin: 0 !important;
    }

    .bus-info-main {
        border-radius: 1rem !important;
    }

    .fa-gear {
        padding: 0.15rem;
    }

    .buses-panel-wrapper, .settings-panel {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE & Edge */
    }
    
    /* Hide scrollbar for Chrome, Safari, and Opera */
    .buses-panel-wrapper::-webkit-scrollbar, .settings-panel::-webkit-scrollbar {
        display: none;
    }

    .settings-panel {
        max-width: 25%;
        margin: 2rem;
        border-radius: 1rem;
    }

    .settings-floating-bar {
        left: 2rem;
        right: auto;
        bottom: 2rem;
        width: calc(25% + 4rem);
        max-width: calc(25% + 4rem);
        box-sizing: border-box;
        padding-left: 2rem;
        padding-right: 2rem;
        margin-bottom: 1rem;
    }

    .settings-close > div {
        position: fixed;
        top: 3rem;
        left: 25%;
        bottom: auto;
        right: auto;
        z-index: 1002;
    }

    .settings-heading {
        user-select: none;
    }

    .theme-modal {
        flex-direction: row;
        align-items: center;
    }

    .theme-header {
        text-align: left !important;
        align-self: flex-start;
        align-items: flex-start;
        width: 100%;
    }

    .theme-img {
        position: absolute;
        height: 20%;
        width: auto !important;
        left: 3vh;
    }

    .theme-slider {
        flex-direction: column;
        border-radius: 1.5rem !important;
    }

    .theme-modal .theme-indicator {
        left: -3px;
        width: calc(100% + 6px);
        top: calc(2 * (100% / 6) - 3px);
        height: calc(100% / 6 + 6px);
        border-radius: 1rem;
    }

    .theme-controls {
        width: fit-content;
    }

    .theme-option {
        font-size: 1.7rem;
    }

    .theme-body {
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
    }

    .theme-preview {
        height: 90vh;
    }

    #theme-preview-img {
        max-height: 95%;
    }

    .theme-modal-confirm {
        align-self: center !important;
        padding: 1rem 10rem !important;
    }

    .dim-on-pan-row {
        display: none !important;
    }

    .info-top {
        flex-direction: column;
    }

    .top-fixed {
        margin-top: 0;
        width: auto;
    }

    .desktop-esc-notice {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10000;
        background: var(--theme-bg);
        color: var(--theme-color);
        border: 1px solid var(--theme-border);
        border-radius: 0 0 0.8rem 0.8rem;
        padding: 0.6rem 1.5rem;
        font-family: var(--font-family);
        font-size: 1.4rem;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        animation: esc-notice-in 0.3s ease;
        align-items: center;
        gap: 0.5rem;
    }
    .desktop-esc-notice .esc-border-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
    }
    .desktop-esc-notice .esc-glow-path {
        fill: none;
        stroke: url(#esc-glow-grad);
        stroke-width: 1.5px;
        vector-effect: non-scaling-stroke;
        filter: url(#esc-glow-filter);
        stroke-dasharray: 24 76;
        stroke-dashoffset: 224;
        opacity: 0;
    }
    .desktop-esc-notice .esc-glow-path.animate-glow {
        animation: escBorderTrace 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }
    .desktop-esc-notice kbd {
        background: var(--theme-bg-closest-stop);
        border: 1px solid var(--theme-border);
        border-radius: 0.4rem;
        padding: 0.1rem 0.5rem;
        font-family: inherit;
        font-size: 1.3rem;
    }
    @keyframes esc-notice-in {
        from { opacity: 0; transform: translateX(-50%) translateY(-100%); }
        to { opacity: 1; transform: translateX(-50%) translateY(0); }
    }
    @keyframes escBorderTrace {
        0% {
            stroke-dashoffset: 224;
            opacity: 0;
        }
        5% {
            opacity: 1;
        }
        85% {
            opacity: 1;
        }
        100% {
            stroke-dashoffset: 24;
            opacity: 0;
        }
    }

}
  