/* ========================================
   Stadium Name History Styling
   ========================================
   
   This file contains styling for the stadium name history display
   used in the stadium information pages.
*/

/* ============================================================================
   SECTION 1: STADIUM NAME HISTORY
   ============================================================================
   Description: Timeline display for stadium name changes with dates
   ============================================================================ */

.stadium-name-history {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007cba;
}

.stadium-name-history h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.1em;
}

.name-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.name-entry {
    padding: 10px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.name-details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 5px;
}

.name-details strong {
    color: #2c3e50;
    font-weight: 600;
}

.year-range {
    color: #6c757d;
    font-size: 0.9em;
}

.type-badge {
    font-size: 0.75em;
    padding: 2px 6px;
    border-radius: 3px;
    color: white;
    font-weight: 500;
}

.name-details-note {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid #e9ecef;
}

.name-details-note small {
    color: #666;
    font-style: italic;
}
