﻿/* Obal tlačítkové skupiny */
.button-group-wrapper {
    display: flex;
    flex-direction: column; /* Text nad tlačítky */
    align-items: center; /* Zarovnání na střed */
    gap: 5px; /* Mezera mezi textem a tlačítky */
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Popis tlačítkové skupiny */
.button-group-label {
    color: #333;
    font-weight: bold;
    text-align: center;
}

/* Kontejner tlačítek */
.button-group-container {
    display: flex;
    gap: 10px; /* Mezera mezi tlačítky */
}

/* Styl tlačítek */
.button-group-btn {
    width: 55px; /* Stejná šířka jako přepínač */
    height: 30px; /* Stejná výška jako přepínač */
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .button-group-btn.inactive {
        background-color: #fff;
        color: #007bff;
        border: 1px solid #ff0000;
    }

    .button-group-btn.active {
        background-color: #5cb85c; /* Zelená barva aktivního tlačítka */
        color: white;
    }

    /* Hover efekt */
    .button-group-btn:hover {
        background-color: #007bff;
        color: white;
    }


@media (max-width: 768px) {
    .button-group-btn {
        font-size: 14px; /* Menší text na menších obrazovkách */
        height: auto; /* Přizpůsobení výšky tlačítka obsahu */
    }
}
