#custom-calendar {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

#calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#calendar-nav button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#calendar-nav button:hover {
    background-color: #005f8a;
}

#calendar-dates {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 5px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-day {
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

#calendar-tiles {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-tile {
    border: 1px solid #ddd;
    padding: 10px;
    min-height: 100px;
    position: relative;
}

.calendar-tile.empty {
    background: #f9f9f9;
}

.calendar-tile.today {
    background: #e3f2fd;
}

.event {
    background: #0073aa;
    color: #fff;
    padding: 5px;
    margin-top: 5px;
    border-radius: 3px;
    text-align: left;
}

.debug {
    background: #fdd;
    color: #d00;
    padding: 2px;
    font-size: 12px;
}

/* Responsywność */
@media (max-width: 600px) {
    #calendar-dates {
        gap: 2px;
    }

    .calendar-days {
        gap: 2px;
        margin-bottom: 5px;
    }

    #calendar-tiles {
        gap: 2px;
    }

    .calendar-tile {
        padding: 5px;
        min-height: 60px;
    }

    .calendar-day, .calendar-tile {
        font-size: 12px;
    }

    #calendar-nav button {
        padding: 8px 16px;
        font-size: 14px;
    }
}
