.city-btn {
    width: 100%;
    /* Set the fixed height for each button */
    display: flex;
    justify-content: center;
    /* Horizontally centers text */
    align-items: center;
    /* Vertically centers text */
    text-align: center;
    background-color: var(--color-primary);
    color: white;
    padding: 0;
    font-size: 0.75vw;
}

#left-city-column {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Ensures equal spacing between buttons */
    height: var(--primary-row-1);
    /* If you want the column to take up the full height of the container */
    width: 19.9%;
    padding: 0;
}

#right-city-column {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 19.9%;
    padding: 0;
}

