.fc-event {
    border: none !important;
    padding: 2px 4px !important;
    font-size: 12px !important;
}

.fc-daygrid-day-events {
    margin-bottom: 2px;
}

.custom-calendar {
    max-width: 100%;
    margin: 0 auto;
    height: 500px;
    aspect-ratio: 1.2;
}

.agenda-item {
    transition: all 0.3s ease;
}

.agenda-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fc-day.selected-day {
    background-color: #e0e7ff !important;
}

.fc-today-button {
    font-size: 12px !important;
    padding: 4px 8px !important;
}

.month-year-selector {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.month-year-selector:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.dropdown-menu {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: #f3f4f6;
}

.dropdown-item.selected {
    background: #e0e7ff;
    color: #3730a3;
}