/* bot_app/web_app/css/components/quantity-selector.css */

/* Стили для выбора количества (ВОССТАНОВЛЕНО) */
.quantity-selector {
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin-top: 10px;
}
.quantity-selector p {
    margin: 0 0 10px 0;
}
.quantity-options {
    display: flex;
    justify-content: space-between;
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 5px;
    border: 1px solid var(--secondary-color);
}
.quantity-options span {
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    flex-grow: 1;
    text-align: center;
}
.quantity-options span.active {
    background-color: #218838;
    color: white;
    font-weight: bold;
}
