/* Obecné nastavení */
body {
    font-family: 'Architects Daughter', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

h2 {
    text-align: center;
    color: #2c3e50;
    margin: 18px 0;
    font-weight: 600;
}

/* Zprávy programu */
#messages {
    background-color: #2ecc71;
    color: #ffffff;
    padding: 10px 15px;
    margin: 10px auto 20px auto;
    text-align: center;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: 600px;
    font-weight: 500;
    display: none; /* Skryto, dokud není potřeba zobrazit */
}

/* Formulář */
form {
    background: #ffffff;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

form input[type="text"],
form input[type="datetime-local"],
form textarea,
form select {
    width: 92%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background: #f9f9f9;
}

form input[type="text"]:focus,
form input[type="datetime-local"]:focus,
form textarea:focus,
form select:focus {
    outline: none;
    width: 92%;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

form button {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    color: #ffffff;
    background-color: #3498db;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

form button:hover {
    background-color: #1d6fa5;
    transform: scale(1.02);
}



/* Responzivita */
@media (max-width: 768px) {
    form {
        width: 95%;
        padding: 15px;
    }

    form button {
        font-size: 14px;
    }

    #messages {
        font-size: 14px;
        width: 95%;
    }
}

a {
  text-decoration: none;
  color: black;
}

apple-calendar {
  font-size: 4px;
  text-align: right;
  color: white;
}
