/* Removes any default bottom border from all station groups */
.station-group {

    border-bottom: none;

}

/* Applies the bottom border strictly to the last group */
.station-group:last-child {
    border-bottom: 1px solid light-dark(#E2E8F0, #334155);
}



.station-group-header {
    border: none;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


/* Removes top border radius from the h3 inside the very first group header */
.cont>.station-group:first-of-type>.station-group-header {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.station {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-left: 1rem;
    margin-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Target the last station item inside any group */
.station-group .station:last-child {
    border-bottom: none;
}