/* Styles généraux */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 15px;
    color: #333;
    -webkit-text-size-adjust: 100%; /* Empêche le zoom automatique sur iOS */
}

/* Container principal responsive */
.user-selection {
    max-width: 1400px;
    margin: 0 auto 20px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
}

.user-header h1 {
    font-size: 20px;
    font-weight: 300;
    color: #2c3e50;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.user-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 8px 12px;
    background-color: #009879;
    color: white;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: #007d63;
}

.action-btn.secondary {
    background-color: #6c757d;
}

.action-btn.secondary:hover {
    background-color: #545b62;
}

.rules-section {
    max-width: 1400px;
    margin: 0 auto 20px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
}

.rules-section h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.rule-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #009879;
}

.rule-card h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Container principal responsive */
.main-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.column {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px;
    width: 100%;
}

.matches-column {
    order: 1;
}

.teams-column {
    order: 2;
}

.ranking-column {
    order: 3;
}

.header {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header h1 {
    font-size: 16px;
    font-weight: 300;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 1px;
    flex: 1;
}

.nav-arrow {
    padding: 6px 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 12px;
}

.nav-arrow:hover:not(.disabled) {
    background-color: #e9ecef;
}

.nav-arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

.eliminated-message {
    text-align: center;
    padding: 15px;
    background-color: #ffe6e6;
    border-radius: 8px;
    border: 1px solid #ffcccc;
}

.eliminated-message h2 {
    color: #cc0000;
    margin-bottom: 8px;
    font-size: 16px;
}

/* Styles pour les tableaux */
.match-table, .teams-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.match-row, .team-row {
    border-bottom: 1px solid #f0f0f0;
}

.match-result-win, .match-result-draw {
    color: #009879;
    font-weight: bold;
}

.match-result-lose {
    color: #cc0000;
    text-decoration: line-through;
    font-weight: bold;
}

.players-status-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.players-status-table th,
.players-status-table td {
    padding: 6px 4px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.players-status-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    font-size: 10px;
}

.eliminated-player {
    background-color: #fff5f5;
}

.alive-player {
    background-color: #f5fff5;
}

.status-alive, .status-eliminated {
    font-weight: bold;
}

.status-alive {
    color: #009879;
}

.status-eliminated {
    color: #cc0000;
}

.death-cross {
    color: #cc0000;
    margin-left: 2px;
}

.no-pick {
    color: #999;
    font-style: italic;
}

.player-name {
    font-weight: 500;
    text-align: left;
    font-size: 11px;
}

.team-selection {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.team-checkbox {
    margin-right: 8px;
}

.team-details {
    display: flex;
    align-items: center;
    flex: 1;
}

.team-name {
    font-size: 12px;
    font-weight: 400;
    margin: 0 6px;
}

.team-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.selected-team {
    background-color: #e6f7ff;
    border-left: 3px solid #1890ff;
}

.current-pick-display {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    text-align: center;
    font-size: 14px;
}

.current-pick-win {
    background-color: #e6f7e6;
    border: 1px solid #009879;
}

.current-pick-lose {
    background-color: #ffe6e6;
    border: 1px solid #cc0000;
}

.current-pick-pending {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
}

.current-pick-team {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

.current-pick-status {
    margin-top: 6px;
    font-size: 11px;
}

.change-pick-button {
    padding: 6px 12px;
    background-color: #ffc107;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
}

.change-pick-button:hover {
    background-color: #e0a800;
}

.play-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #009879;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 12px;
}

.play-button:hover {
    background-color: #007d63;
}

.match-date {
    padding: 10px 6px;
    text-align: center;
    font-size: 10px;
    color: #666;
    font-weight: 500;
    width: 70px;
}

.match-teams, .team-info {
    padding: 12px 6px;
}

.teams-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
}

.team-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
}

.team-wrapper.home {
    justify-content: flex-end;
    text-align: right;
}

.team-wrapper.away {
    justify-content: flex-start;
    text-align: left;
}

.vs {
    font-size: 8px;
    color: #999;
    margin: 0 4px;
    font-weight: 300;
}

.no-data {
    text-align: center;
    color: #666;
    font-size: 12px;
}

.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Scroll fluide sur iOS */
}

/* Styles administration */
.admin-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1800px;
    margin: 0 auto;
}

.admin-column {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px;
    width: 100%;
}

.admin-header {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-header h2 {
    font-size: 16px;
    font-weight: 300;
    color: #2c3e50;
    margin: 0;
}

.status-indicator {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.status-ok {
    background-color: #e6f7e6;
    color: #009879;
}

.status-error {
    background-color: #ffe6e6;
    color: #cc0000;
}

.match-form, .user-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.league-user-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.admin-select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
}

.admin-btn {
    padding: 8px 12px;
    background-color: #009879;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.admin-btn:hover {
    background-color: #007d63;
}

.admin-btn-danger {
    background-color: #dc3545;
}

.admin-btn-danger:hover {
    background-color: #c82333;
}

.pick-editable {
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.pick-editable:hover {
    background-color: #e6f7ff;
}

.incoherent-pick {
    background-color: #ffe6e6 !important;
    border: 1px solid #cc0000;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    padding: 10px;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 12px;
    width: 95%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #000;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.message {
    padding: 12px;
    margin: 15px auto;
    max-width: 1400px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

.message.success {
    background-color: #e6f7e6;
    border: 1px solid #009879;
    color: #009879;
}

.message.error {
    background-color: #ffe6e6;
    border: 1px solid #cc0000;
    color: #cc0000;
}

.user-select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: white;
    color: #333;
    width: 100%;
}

/* Bandeau de vie */
.life-tracker-container {
    max-width: 1400px;
    margin: 0 auto 20px auto;
}

.life-tracker {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
}

.life-tracker-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eaeaea;
    text-align: center;
}

.life-tracker-header h2 {
    font-size: 16px;
    font-weight: 300;
    color: #2c3e50;
    margin: 0;
}

.player-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.player-status.status-alive {
    background-color: #e6f7e6;
    color: #009879;
}

.player-status.status-eliminated {
    background-color: #ffe6e6;
    color: #cc0000;
}

.rounds-timeline {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
}

.round-tracker {
    flex: 0 0 auto;
    width: 100px;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.round-tracker.round-past {
    background: #f8f9fa;
}

.round-tracker.round-future {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-style: dashed;
}

.round-header {
    margin-bottom: 8px;
}

.round-number {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.round-date {
    font-size: 10px;
    color: #666;
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 10px;
}

.team-pick {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-height: 60px;
    justify-content: center;
}

.team-pick.pick-lose {
    opacity: 0.6;
}

.team-logo-small {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.team-name-small {
    font-size: 10px;
    font-weight: 500;
    color: #2c3e50;
}

.death-indicator, .win-indicator, .pending-indicator {
    font-size: 14px;
}

.no-pick-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.no-pick-text {
    color: #999;
    font-style: italic;
    font-size: 12px;
}

.future-round-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-height: 60px;
    justify-content: center;
    color: #666;
}

.lock-icon, .trophy-icon {
    font-size: 20px;
}

.future-text {
    font-size: 10px;
    font-weight: 500;
}

/* Section des vainqueurs */
.winners-section {
    max-width: 1400px;
    margin: 0 auto 20px auto;
}

.winners-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
}

.winners-container h2 {
    font-size: 18px;
    font-weight: 300;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.winner-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.winner-card:hover {
    transform: translateY(-5px);
}

.winner-card.gold-winner {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #fff9e6, #ffeb99);
}

.winner-card.silver-winner {
    border: 3px solid #c0c0c0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.winner-trophy {
    font-size: 36px;
    margin-bottom: 10px;
}

.winner-info h3 {
    margin: 0 0 6px 0;
    color: #2c3e50;
    font-size: 16px;
}

.winner-info p {
    margin: 0;
    color: #666;
    font-size: 12px;
}

.winners-note {
    margin-top: 15px;
    color: #666;
    font-style: italic;
    font-size: 12px;
}

/* Styles pour le vainqueur */
.player-status-winner {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.winner-player {
    background-color: #fff9e6 !important;
    border-left: 4px solid #ffd700;
}

.status-winner {
    color: #ffd700;
    font-weight: bold;
}

/* Styles pour le chat */
.chat-container {
    max-width: 1400px;
    margin: 20px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
}

.chat-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eaeaea;
    text-align: center;
}

.chat-messages {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
}

.chat-message {
    margin-bottom: 12px;
    padding: 8px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #009879;
    font-size: 13px;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.message-user {
    font-weight: bold;
    color: #009879;
    font-size: 12px;
}

.message-time {
    font-size: 10px;
    color: #666;
}

.message-text {
    color: #333;
    font-size: 13px;
}

.chat-input-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.chat-send-btn {
    padding: 10px 15px;
    background-color: #009879;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.chat-send-btn:hover {
    background-color: #007d63;
}

/* Styles pour l'administration */
.auto-assign-section {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin: 12px 0;
    border-left: 4px solid #17a2b8;
}

.auto-assign-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auto-assign-btn {
    background-color: #17a2b8;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.auto-assign-btn:hover {
    background-color: #138496;
}

/* Message d'avertissement */
.message.warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

/* Ajouter le style pour le bouton secondaire */
.admin-btn-secondary {
    background-color: #6c757d;
    color: white;
}

.admin-btn-secondary:hover {
    background-color: #545b62;
}

/* Styles pour le header */
.user-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    background-color: #f8f9fa;
}

.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 80px;
    width: auto;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-title {
    font-size: 20px;
    font-weight: 300;
    color: #2c3e50;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.site-subtitle {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Styles pour la page de login */
.login-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
    text-align: center;
}

.login-logo {
    height: 50px;
    width: auto;
}

.login-title {
    font-size: 22px;
    font-weight: 300;
    color: #2c3e50;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
}

/* Media Queries pour le responsive */
@media (min-width: 768px) {
    body {
        padding: 20px;
    }
    
    .main-container {
        flex-direction: row;
    }
    
    .user-header {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .life-tracker-header {
        flex-direction: row;
        text-align: left;
    }
    
    .chat-header {
        flex-direction: row;
        text-align: left;
    }
    
    .chat-input-form {
        flex-direction: row;
    }
    
    .match-form, .user-form {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
    
    .league-user-form {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .winners-list {
        flex-direction: row;
        justify-content: center;
    }
    
    .winner-card {
        min-width: 200px;
    }
}

@media (min-width: 1024px) {
    .rules-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Améliorations spécifiques pour iOS */
@supports (-webkit-touch-callout: none) {
    .action-btn, .play-button, .chat-send-btn, .admin-btn {
        -webkit-tap-highlight-color: transparent;
    }
    
    input, select, textarea {
        font-size: 16px; /* Empêche le zoom automatique sur iOS */
    }
}

/* Empêcher le zoom sur les inputs sur iOS */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select,
    textarea,
    input {
        font-size: 16px;
    }
}

/* Styles pour les très petits écrans */
@media (max-width: 360px) {
    body {
        padding: 10px;
    }
    
    .user-selection, .rules-section, .column, .life-tracker, .chat-container, .winners-container {
        padding: 12px;
    }
    
    .action-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .header h1 {
        font-size: 14px;
    }
    
    .round-tracker {
        width: 85px;
        padding: 8px;
    }
}

/* Navigation des saisons */
.season-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.season-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.season-info {
    text-align: center;
}

.season-info h3 {
    margin: 0;
    color: #0B3D91;
    font-size: 18px;
}

.season-info small {
    color: #666;
    font-size: 12px;
}

/* Section création de saison */
.new-season-section {
    background: #e6f7e6;
    border: 1px solid #28a745;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 0 auto 20px auto;
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
}

/* S'assurer que tous les principaux containers ont le même comportement */
.life-tracker-container,
.main-container,
.chat-container,
.rules-section {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.season-in-progress {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Icône vainqueur précédent */
.previous-winner-icon {
    margin-left: 5px;
    font-size: 14px;
}

/* Statistiques saisonnières */
.season-stats {
    text-align: center;
    font-weight: 600;
}

/* Responsive pour la navigation des saisons */
@media (max-width: 768px) {
    .season-navigation {
        flex-direction: column;
        text-align: center;
    }
    
    .season-selector {
        order: 2;
    }
    
    .league-selector {
        order: 1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .season-status-indicator {
        order: 3;
        margin-top: 10px;
    }
}

/* Cartes de saison pour l'admin */
.season-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #6c757d;
}

.season-card.season-active {
    border-left-color: #28a745;
    background: #e6f7e6;
}

.season-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.season-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.season-status.active {
    background: #d4edda;
    color: #155724;
}

.season-status.finished {
    background: #e2e3e5;
    color: #383d41;
}

.season-status.pending {
    background: #fff3cd;
    color: #856404;
}

.season-details {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.season-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.create-season-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}



