/**
 * Event-Furs – Frontend: Statistik – Events
 * Datei: /frontend/assets/css/frontend-statistics-events.css
 *
 * Styling ausschließlich für /frontend/statistics/events.php
 */

/* --------------------------------------------------
   Grundlayout
-------------------------------------------------- */

.frontend-statistics-events {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

/* --------------------------------------------------
   Header
-------------------------------------------------- */

.frontend-statistics-events .frontend-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.frontend-statistics-events h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.frontend-statistics-events .frontend-subtitle {
    color: var(--frontend-text-muted, #999);
    font-size: 0.95rem;
}

/* --------------------------------------------------
   Eventliste
-------------------------------------------------- */

.frontend-events-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.frontend-event-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;

    padding: 1.1rem 1.3rem;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);

    text-decoration: none;
    color: inherit;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.15s ease;
}

.frontend-event-row:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(160, 120, 255, 0.45);
    transform: translateY(-2px);
}

/* --------------------------------------------------
   Inhalt
-------------------------------------------------- */

.frontend-event-main h2 {
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0 0 0.2rem;
}

.frontend-event-meta {
    font-size: 0.9rem;
    color: var(--frontend-text-muted, #aaa);
}

/* --------------------------------------------------
   Status
-------------------------------------------------- */

.frontend-event-status {
    font-size: 0.75rem;
    color: rgba(255, 180, 180, 0.85);
    white-space: nowrap;
}

/* --------------------------------------------------
   Leerzustand
-------------------------------------------------- */

.frontend-empty {
    text-align: center;
    color: var(--frontend-text-muted, #888);
}

/* --------------------------------------------------
   Mobile
-------------------------------------------------- */

@media (max-width: 600px) {
    .frontend-event-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .frontend-event-status {
        margin-top: 0.4rem;
    }
}

/* --------------------------------------------------
   Diagramm
-------------------------------------------------- */

.frontend-events-chart {
    margin: 2.5rem auto 3rem;
    padding: 1.2rem 1.5rem;

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;

    height: 260px;
}
