#catchments-wrapper {
    display: flex;
    height: 600px;
}

#catchments-sidebar {
    width: 100%;
    max-width: 550px;
    background: #F7F5F5;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-grow: 1;
    align-items: center;
}

#catchments-map {
    width: 100%;
    height: 100%;
}

.catchment-item {
    font-family: "MuseoSans300";
    font-size: 18px;
    padding: 12px;
    border-bottom: 1px solid #ccc;
}

.catchment-item:last-child {
    border-bottom: none;
}

.catchment-item a {
    color: #F04B00;
    text-decoration: underline;
    font-family: "MuseoSans700";
    font-size: 12px;
    float:right;
    padding: 6px 50px;
}

button {
    margin-right: 6px;
}

@media (max-width: 768px) {
    #catchments-wrapper { flex-direction: column; }
    #catchments-sidebar { width: 100%; height: 200px; }
    #catchments-map { width: 100%; height: calc(100vh - 200px); }
}
