/* tamm-kreiz-concerts.css */

.tamm-kreiz-concerts-container {
    max-width: 800px;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.concerts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e1e1e1;
}

.concerts-header h3 {
    margin: 0;
    color: #333;
    font-size: 24px;
}

.concerts-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-nav {
    background: #ffffff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-nav:hover {
    background: #ffffff;
}

.current-year {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    min-width: 60px;
    text-align: center;
}

.concerts-loader {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

.concerts-list {
    margin-top: 20px;
}

.concerts-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.concert-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.concert-item:hover {
    background: #f0f0f0;
    border-color: #ccc;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.concert-cancelled {
    opacity: 0.6;
    background: #ffebee !important;
    border-color: #ffcdd2 !important;
}

.concert-date {
    flex-shrink: 0;
    width: 90px;
    text-align: center;
    margin-right: 20px;
    padding: 10px;
    background: white;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
}

.concert-date .mois {
    display: block;
    font-size: 11px;
    color: #0073aa;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 2px;
}

.concert-date .jour {
    display: block;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.concert-date .numero {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.concert-info {
    flex: 1;
    min-width: 0;
}

.concert-title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin-bottom: 5px;
    word-wrap: break-word;
}

.concert-title:hover {
    color: #0073aa;
    text-decoration: underline;
}

.concert-ville {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.concert-avantage {
    font-size: 12px;
    color: #0073aa;
    font-style: italic;
    background: #e7f3ff;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
}

.no-concerts {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
    background: #f9f9f9;
    border: 1px dashed #ddd;
    border-radius: 6px;
}

.error {
    color: #d63384;
    background: #f8d7da;
    padding: 15px;
    border: 1px solid #f1aeb5;
    border-radius: 4px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .concerts-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .concerts-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .concert-item {
        flex-direction: column;
        text-align: center;
    }
    
    .concert-date {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .concert-date .numero {
        font-size: 18px;
    }
    
    .concert-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .tamm-kreiz-concerts-container {
        margin: 10px 0;
    }
    
    .concerts-header h3 {
        font-size: 20px;
    }
    
    .concert-item {
        padding: 10px;
    }
    
    .btn-nav {
        padding: 6px 10px;
        font-size: 12px;
    }
}
