.selector-label {
    margin: 10px 0;
    font-size: 18px;
}
.selector-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.option {
    padding: 10px 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    min-width: 70px;
    text-align: center;
    font-size: 16px;
    transition: .2s;
    user-select: none; /* Prevent text selection */
}
.option:hover {
    border-color: teal;
    color: teal;
}
.selected {
    background: #e6f7f7;
    border-color: teal;
    color: teal;
    font-weight: bold;
}
.disabled {
    color: #aaa;
    border-color: #ddd;
    background: #f9f9f9;
    pointer-events: none; /* Disables clicks */
    cursor: default; /* Changes cursor to default */
}
.disabled-container {
    opacity: 0.5; /* Makes the container look faded */
    pointer-events: none; /* Disables all clicks within the container */
    cursor: default; /* Changes cursor to default */
}