body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Opraveno zarovnání nahoře */
    min-height: 100vh; /* Umožní obsah rozšířit se na výšku */
    background-color: #f4f4f4;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 800px;
    margin-top: 20px; /* Přidání odsazení */
}

h2 {
    text-align: center;
    position: sticky; /* Zůstane viditelný při scrollování */
    top: 0;
    background-color: white;
    padding: 10px;
    z-index: 1000;
}

label {
    display: block;
    margin-top: 8px;
}

/*label[for="fakturace"] {
    display: block;
}*/

input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}
#result {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}

label {
    display: flex;
    align-items: center; /* Zarovnání na střed vertikálně */
    gap: 5px; /* Mezera mezi checkboxem a textem */
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

a {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

  