﻿
body {
    font-family: 'Inter', sans-serif;
    background-color: #f1f3f6;
    overflow-x: hidden;
}

.full-bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

#statesListContainer {
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

    #statesListContainer.collapsed {
        max-height: 250px; /* Adjust height as needed for a few rows */
    }

@media (min-width: 768px) {
    #statesListContainer.collapsed {
        max-height: 180px;
    }
}


