/* Dropdown menu */

.dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    background-color: var(--surface-container-main);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.10), 0 0 1px 0 rgba(0, 0, 0, 0.15);
    border-radius: 0.6rem;
    padding: 0.2rem;
    border: none;
    min-width: 200px;
    max-width: 400px;
    height: fit-content;
    width: fit-content;
    z-index: 99999;
}

.dropdown-menu button {
    width: 100%;
    text-align: left;
    border-radius: 0.5rem;
    padding: 0.4rem 0.6rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* justify-content: space-between; */
}

/* Align toggleSwitch (when used inside button) to the right */
.dropdown-menu button .toggleSwitch, .dropdown-menu button .radioButton {
    margin-left: auto;
}


/* Dropdown sections */

/* Dropdown section content - indented items */
.dropdown-menu .l1 {
    margin-left: 0.5rem;
    width: calc(100% - 0.5rem);
}

.dropdown-menu .l2 {
    margin-left: 1rem;
    width: calc(100% - 1rem);
}

/* Number input */
.dropdown-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* padding: 0.5rem; */
}

.dropdown-label {
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--surface-text-main);
    padding: 0.1rem 0.2rem;
}



