/* components/calendar.css - Kalender-spezifische Styles */
.events-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.event-filters select,
.event-filters input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    flex-grow: 1;
    min-width: 180px;
}

#calendar-view {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.event-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.event-image {
    height: 180px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 15px;
}

.event-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0066cc;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
}

.event-detail-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    transition: background 0.3s;
}

.event-detail-btn:hover {
    background: #0056b3;
}

.fc-event {
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 0.9rem;
    white-space: normal !important;
    overflow: hidden;
}

.event-minimap {
    height: 200px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid #ddd;
}

.event-organizer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.event-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    color: white;
    box-shadow: 0 0 0 2px white;
}

.fc-toolbar-title {
    font-size: 1.4rem !important;
}

@media (max-width: 768px) {
    .event-filters {
        flex-direction: column;
    }
    
    .events-list {
        grid-template-columns: 1fr;
    }
    
    .fc-toolbar {
        flex-direction: column;
        gap: 10px;
    }
    
    .fc-header-toolbar .fc-toolbar-chunk {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
}