.fc-col-header-cell-cushion{
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.fc .fc-daygrid-day-number {
    text-decoration: none;
    color: black;
    font-weight: bold;
}
/* .fc-event-time removed — times are not shown */

.fc-event-title {
    margin-top: 0px;
    padding: 0px 4px;
}

/* Short calendar custom styles */
.events-list{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.event-item{
    display: flex;
    align-items: stretch;
    gap: 12px;
}
.event-left{
    width: 64px;
    min-width: 64px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 6px;
    border-left: 6px solid var(--accent, transparent);
    padding-left: 10px;
}
.event-month{
    font-size: 11px;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 0.6px;
}
.event-day{
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #111;
}
.event-right{
    flex: 1 1 auto;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.event-meta{
    font-size: 13px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 6px;
    opacity: 0.95;

    /* na razie nie potrzebujemy widoku godzin ponieważ zakładamy że wszystkie wpisy są całodniowe */
    display: none;
}
.event-title{
    font-weight: 700;
    font-size: 16px;
    color: inherit;
}

.full-calendar-link{
    margin-top: 12px;
    text-align: right;
}
.full-calendar-link a{
    display: inline-block;
    background: #f6f6f6;
    color: black;
    padding: 6px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.06);
}
.full-calendar-link a:hover{ background:#eef7ff; }
@media (max-width: 480px){
    .event-day{ font-size: 22px; }
    .event-right{ padding: 8px; }
}
