﻿.toggle-wrapper {
    display: flex;
    
    align-items: center; /* Zarovnej střed */
    gap: 5px; /* Mezera mezi textem a přepínačem */
    font-family: Arial, sans-serif;
    font-size: 12px;
    margin-left:0px;
}
.toggle-label {
    color: #333;
    font-weight: bold;
}
.toggle-container {
    display: inline-block;
    width: 80px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    font-family: Arial, sans-serif;
}
    .toggle-container:hover {
        border-color: #007bff;
    }

.toggle-button {
    display: flex;
    width: 200%; /* Dvakrát šířka obalu pro posuv */
    height: 100%;
    transition: transform 0.3s ease;
}

    .toggle-button.off {
        transform: translateX(0%);
    }

    .toggle-button.on {
        transform: translateX(-50%);
    }

.option {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

    .option.ne {
        background-color: #d9534f; /* Červená barva */
    }

    .option.ano {
        background-color: #5cb85c; /* Zelená barva */
    }
