/* Concert Schedule CSS */


.schedule-container {

    width: 100%;
    background: none;
    border-radius: 25px;

    padding: 40px;


}

.schedule-header {
    text-align: center;
    margin-bottom: 30px;
}

.schedule-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.schedule-subtitle {
    font-size: 1.1rem;
    color: #cbd5e0;
    opacity: 0.9;
}

.concerts-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.table-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.table-header th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.concert-row {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.concert-row:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.concert-row.past {
    opacity: 0.4;
    background: rgba(0, 0, 0, 0.2);
}

.concert-row.past:hover {
    opacity: 0.6;
    transform: translateX(2px);
}

.concert-row.upcoming {
    background: rgba(var(--color-12), 1);
    /*border-left: 4px solid rgb(var(--color-12));;*/
}

.concert-row.soon {
    background: rgba(251, 191, 36, 0.15);
    border-left: 4px solid #fbbf24;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.concert-row td {
    padding: 18px 15px;
    color: #e2e8f0;
    font-size: 0.95rem;
    vertical-align: middle;
}

.date-cell {
    font-weight: 600;
    min-width: 120px;
}

.city-cell {
    font-weight: 500;
    color: #ffffff;
    min-width: 100px;
}

.venue-cell {
    color: #cbd5e0;
}

.status-cell {
    text-align: center;
    min-width: 100px;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-upcoming {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.status-soon {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid #fbbf24;
}

.status-past {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
    border: 1px solid #9ca3af;
}

.tickets-cell {
    text-align: center;
}

.ticket-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.ticket-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.ticket-button.disabled {
    background: rgba(156, 163, 175, 0.3);
    color: #9ca3af;
    cursor: not-allowed;
    pointer-events: none;
}

.last-updated {
    text-align: center;
    color: #9ca3af;
    font-size: 0.85rem;
    margin-top: 20px;
    font-style: italic;
}

.description-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .schedule-container {
        padding: 25px;
        overflow-x: auto;
    }
    
    .schedule-title {
        font-size: 2rem;
    }
    
    .concerts-table {
        min-width: 600px;
    }
    
    .table-header th,
    .concert-row td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    
    .schedule-container {
        padding: 20px;
    }
    
    .schedule-title {
        font-size: 1.6rem;
    }
    
    .concerts-table {
        min-width: 500px;
    }
}