/* FullCalendar Month View Tooltip Styles */
.fc-event-tooltip {
    background: #2c3e50;
    color: white;
    border-radius: 6px;
    padding: 12px 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fc-event-tooltip::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -6px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #2c3e50;
}

.event-tooltip-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tooltip-title {
    font-weight: 600;
    font-size: 14px;
    color: #ecf0f1;
    margin-bottom: 2px;
}

.tooltip-time {
    color: #bdc3c7;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.tooltip-time::before {
    content: '🕒';
    margin-right: 6px;
    font-size: 11px;
}

.tooltip-location {
    color: #3498db;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.tooltip-type {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-top: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fc-event-tooltip {
        max-width: 250px;
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .tooltip-title {
        font-size: 13px;
    }
}

/* Animation */
.fc-event-tooltip {
    animation: tooltipFadeIn 0.2s ease-out;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}