/* Prototyp
/* ITI Data Net Technology

/* frontend/css/style.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

header {
    background: #ff69b4; /* Gorący róż */
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

main {
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

section:last-child {
    border-bottom: none;
}

h1 {
    color: #ff69b4;
    text-align: center;
}

h2 {
    color: #ff69b4;
    text-align: center;
}

.calendar-display {
    border: 7px solid #4df3ca;
    border-radius: 7px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #ff69b4;
    color: #fff;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 20px;
}

button:hover {
    background: #e05c9f;
}

/* Style dla formularza rejestracji */
form label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="date"],
form input[type="tel"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.checkbox-group {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

#registration-message, #avatar-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    background-color: #b434db;
    color: #333;
    text-align: center;
}

footer {
    text-align: center;
    padding: 1rem 0;
    margin-top: 30px;
    background: #52d406;
    color: #060606;
}
