body {
    font-family: Arial, sans-serif;
    padding: 5px;
    text-align:center;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

.column {
    display: flex;
    flex-direction: column;
    width: 100%; /* Můžete upravit podle potřeby */

    margin-right: 5px; /* Přidává pravý okraj ke každému sloupci */
}

.column:last-child {
    margin-right: 0;
}

.row {
    display: flex;
    justify-content: space-between;
}

p {
    text-align:center;
    color: #3498db;
    font-size: 18px;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="submit"],
select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #3498db; /* Přidání rámečku */
    border-radius: 5px; /* Přidání zaoblených rohů */
    width: 100%;
    margin-bottom: 10px; /* Zvětšení spodního marginu */
    box-sizing: border-box; /* Přidá padding do šířky a výšky elementu */
    text-align:center;
}

input[type="submit"] {
    background-color: #3498db;
    color: white;
    cursor: pointer;
    border: none; /* Odebrání rámečku z tlačítka odeslat */
}



input[type="submit"]:hover {
    background-color: #ff4d4d;
}

.logo {
    display: block;
    margin: 20px auto 20px; /* Centrování loga a přidání spodního marginu */
    max-width: 150px; /* Nastavení maximální šířky loga */
    height: auto; /* Zachování poměru stran loga */
}

.column select {
    text-align-last: center;
    text-align: center;
    -moz-text-align-last: center;
    -webkit-text-align-last: center;
}

select {
    text-align-last: center;
    text-align: center;
    -moz-text-align-last: center;
    -webkit-text-align-last: center;
}

.confirmation h1 {
    font-size: 20px;
    color: #3498db;
}

.confirmation p {
    font-size: 16px;
    margin-bottom: 20px;
}

.confirmation button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #3498db;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.confirmation button:hover {
    background-color: #ff4d4d;
}

