/* FLEX UKŁAD — kalendarz + formularz obok */
.rezerwacja-flexbox {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Kalendarz */
#kalendarz-przykladowy {
    max-width: 750px;
    flex: 1 1 60%;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

/* Formularz */
#rezerwacja-form {
    display: grid;
    gap: 1rem;
    max-width: 450px;
    flex: 1 1 35%;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

#rezerwacja-form label {
    font-weight: 600;
}

#rezerwacja-form input,
#rezerwacja-form select,
#rezerwacja-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
}

#rezerwacja-form button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

#rezerwacja-form button:hover {
    background-color: #005f8d;
}

/* Legenda */
.kalendarz-legenda {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.kalendarz-legenda .k-box {
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 3px;
    margin-right: 5px;
}

.kalendarz-legenda .zajety {
    background: #cc0000;
}

.kalendarz-legenda .wolny {
    background: #99cc99;
}

/* Duże dni */
.fc .fc-daygrid-day-number {
    font-size: 1.2rem;
    padding: 8px;
}

.fc-daygrid-day {
    min-height: 100px;
}

.fc-event {
    font-size: 1rem;
    padding: 5px;
    text-align: center;
    border: 2px solid #cc0000 !important;
    background-color: transparent !important;
    color: #cc0000 !important;
    font-style: italic;
}

/* Tytuł kalendarza */
.fc .fc-toolbar-title {
    font-size: 1.8rem;
}

/* Komunikaty */
.rezerwacja-sukces {
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.rezerwacja-blad {
    padding: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Przyciski */
#toggle-kalendarz {
    display: block;
    width: 90%;
    max-width: 400px;
    min-height: 50px;
    margin: 0 auto 1rem auto;
    padding: 15px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    text-align: center;
}

#toggle-kalendarz:hover {
    background-color: #005f8d;
}
