/* Styles for the select menu container */
.select-menu-container {
    position: relative;
    margin: 20px 0;
}

/* Styles for the select element */
.select-menu {
    appearance: none; /* Remove default styling */
    border: 2px solid var(--select-border-color);
    background-color: var(--select-background-color);
    color: var(--select-text-color);
    padding: 10px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px; /* Rounded corners */
    box-sizing: border-box;
    outline: none;
    cursor: pointer; /* Pointer cursor for the select menu */
}

/* Styles for the select options (options themselves cannot be styled in the dropdown) */
.select-menu option {
    border-radius: 4px; /* Rounded corners for options */
    font-weight: 100;
    text-align: center;
    cursor: pointer; /* Pointer cursor for the select menu */
}

/* Styling for dropdown menu (needs JavaScript or CSS workaround) */
.select-menu-container select:focus {
    cursor: pointer; /* Pointer cursor when dropdown is open */
}

/* Styles for the disabled option */
.select-menu option:disabled {
    color: #a0a0a0; /* Gray text color for disabled options */
    font-weight: 100; /* Normal font weight for disabled options */
}
