/**
 * Kalendář akcí - stránkové styly
 */

.calendar-container {
    max-width: 700px;
    margin: 0 auto;
}

.month-section {
    margin-bottom: 30px;
}

.month-header {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-green) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.events-list {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    overflow: hidden;
}

.event-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.event-row:last-child {
    border-bottom: none;
}

.event-row:hover {
    background: #f8fafc;
}

.event-date {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-orange) 100%);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    text-align: center;
    min-width: 45px;
    font-weight: 700;
    font-size: 0.9rem;
}

.event-name {
    flex: 1;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.event-desc {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

.no-events {
    text-align: center;
    padding: 60px 20px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.no-events-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .event-row {
        flex-wrap: wrap;
    }
    
    .event-desc {
        width: 100%;
        margin-left: 60px;
        margin-top: 3px;
    }
}
