/* Season Mechanic — shared styles for all season renderers */

/* Tab container */
.season-tab {
    padding: 1.5rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Inactive season banner */
.season-tab__banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: 6px;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.25);
    color: #ff9b9b;
    font-size: 0.875rem;
}

.season-tab__banner-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Empty / no-config state */
.season-tab__empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-dimmed, #7a7870);
}

.season-tab__empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.season-tab__empty-title {
    font-size: 1.125rem;
    color: var(--text-primary, #e0ddd5);
    margin-bottom: 0.5rem;
}

.season-tab__empty-text {
    font-size: 0.875rem;
}

/* Loading state */
.season-tab__loading {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-dimmed, #7a7870);
}

/* Summary section (for overview tab) */
.season-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.season-summary__empty {
    color: var(--text-dimmed, #7a7870);
    font-size: 0.8125rem;
    font-style: italic;
}
