/* ---------- Havi nézet ---------- */
.fc-month-view .fc-row {
    display: flex;
    flex-wrap: wrap;
}

.fc-month-view .fc-day {
    height: 200px !important;
    display: flex;
    flex-direction: column;
    position: relative;
}

.fc-month-view .fc-day-grid-event {
    max-height: 150px;
    overflow: hidden;
    position: relative;
}

.fc-month-view .fc-event {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    text-align: center;
    height: 100%;
}

.fc-month-view .fc-event .calendar-thumb {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.fc-month-view .fc-event:hover .calendar-thumb {
    transform: scale(1.5);
    z-index: 999;
}

.fc-month-view .fc-event .fc-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2px 4px;
    font-size: 0.75rem;
    color: #fff;
    background-color: rgba(0,0,0,0.5);
    border-radius: 0 0 6px 6px;
    text-align: center;
}

/* ---------- Lista nézet ---------- */
.fc-list-view .fc-event {
    display: flex;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 5px;
    padding: 4px;
    background-color: #f5f5f5;
}

.fc-list-view .fc-event .calendar-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
    flex-shrink: 0;
}

.fc-list-view .fc-event .fc-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}