.content {
    display: grid;
    width: 75%;
    text-align: center; /* Tento text-align se uplatní pro celý obsah */
    margin-top: 5%;
    margin-left: 10%;
    grid-template-columns: 1fr 1fr 1fr; /* Tři sloupce o stejné šířce */
    gap: 20px;
}

.email, .discord, .ticket {
    text-align: center;
}

.email {
    grid-column: 1;
}

.discord {
    grid-column: 2;
}

.ticket {
    grid-column: 3;
}

/* Formulář */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80%; /* Nastavíme šířku formuláře */
    margin-left: auto; /* Vycentrování formuláře */
    margin-right: auto; /* Vycentrování formuláře */
    align-items: center; /* Horizontální zarovnání obsahu formuláře */
    text-align: center; /* Zajistí, že vše ve formuláři bude centrováno */
}

/* Vstupy a textarea */
input[type="text"],
input[type="email"],
input[type="textarea"],
textarea,
select {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 300px; /* Maximální šířka pro lepší vzhled */
    background-color: transparent;
    text-align: center; /* Zarovnání textu do středu */
    color: white;
    resize: vertical;
}

/* Fokus */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="textarea"]:focus,
textarea:focus,
select:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
    outline: none;
}

/* Checkbox */
input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2); /* Zvětšení pro lepší viditelnost */
}

/* Odkazy */
form a {
    color: #4a90e2;
    text-decoration: none;
}

form a:hover {
    text-decoration: underline;
}

/* Tlačítka */
button,
input[type="submit"] {
    background-color: #4a90e2;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Hover efekt pro tlačítka */
button:hover,
input[type="submit"]:hover {
    background-color: #357ab8;
}

/* Labely */
label {
    font-weight: 500;
    margin-bottom: 5px;
    text-align: center;
    width: 100%;
}
option{
    background-color: #3e3c3f;
}
select {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 114%;
    max-width: 300px; /* Maximální šířka pro lepší vzhled */
    background-color: transparent;
    text-align: center; /* Zarovnání textu do středu */
    color: white;
    resize: vertical;
}
.toast {
    display: none;  /* Skrytý toast ve výchozím stavu */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50;  /* Zelená barva pro úspěch */
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    z-index: 1000;  /* Toast bude vždy nahoře */
}

.toast.error {
    background-color: #f44336;  /* Červená barva pro chybu */
}
a{
    color: white;
}