.sections {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
    overflow-y: auto;
}

.main-section {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    overflow-x: auto;
}

div .region-select {
    border: none;
}

.edit-menu {
    position: relative;
    min-width: 600px;
    overflow-y: auto;
    height: 300px;
    margin-top: 35px;
}

.edit-menu button {
    background-color: rgb(66, 97, 250);
    color: white;
    border: none;
    padding: 8px 15px;;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color .2s;
    height: 35px;
}

.edit-menu button:hover {
    background-color: rgb(49, 84, 255);
}

.customize-graph-menu {
    background-color: rgb(66, 97, 250);
    width: fit-content; /* Width adapts to content */
    padding: 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 65px;
    display: none;
}

.customize-graph-menu .row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.customize-graph-menu .cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customize-graph-menu .cell select {
    width: 100%;
    height: 30px;
}

.apply-changes-button {
    align-self: center;
    padding: 8px 25px;
    background-color: rgb(66, 97, 250);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.customize-graph-menu.show {
    display: flex;
}

.apply-changes-button:hover {
    background-color: rgb(49, 84, 255);
}