/* © 2025 Romar Jabez */

.selector-wrapper {
    background-color: #445443;
    display: flex;
    justify-content: space-around;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
}

.selector-unit {
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 8px;
    color: white;
    font-size: 16px;
}

.selector-unit::before {
    content: "";
}

.selector-unit.selected {
    background-color: white;
    color: #1C241C;
    cursor: pointer;
}

.selector-unit:hover {
    background-color: #c2c2c2;  
    cursor: pointer;
}

.selector-unit:hover:not(.selected) {
    background-color: #2D392C;
}

@media (max-width: 680px) {
    .selector-wrapper {
        flex-direction: column;
    }

    .selector-unit {
        font-size: 0;
    }

    .selector-unit::before {
        content: attr(data-label);
        font-size: 16px;
    }
}