/* Loader container */
.loader {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader svg {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.loader p {
    font-size: 16px;
    color: #472963;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 0;
}

.upcoming-concerts .my-carousel .slick-arrow.slick-next {
    right: -140px;
}
#concert-modal .modal-dialog {
    max-width: 730px;
}
@media screen and (max-width: 991px) {
    .upcoming-concerts .my-carousel .slick-arrow.slick-next {
        right: 0px;
    }
}
.upcoming-concerts .my-carousel .slick-arrow {
    background: #c99d66;
}

.entry-thumb-concert img {
    aspect-ratio: auto !important;
}

/* Animacja fade-in dla nowych koncertów */
.concert-item {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsywność loadera */
@media (max-width: 768px) {
    .loader svg {
        width: 80px;
        height: 80px;
    }
    
    .loader p {
        font-size: 14px;
    }
}

#concert-dates-container {
    width: 100%;
}

#concert-dates-container .event-date-item {
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 10px;
}

#concert-dates-container .event-date-item:last-child {
    margin-bottom: 0;
}

#concert-dates-container .event-date-item .date {
    font-size: 18px;
    color: #472963;
}

#concert-dates-container .event-date-item .time {
    font-weight: 600;
    margin-left: 10px;
}

#concert-dates-container .btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.popup-calendar-img {
    position: relative;
}

.popup-calendar-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    pointer-events: none;
}

/* Responsywność */
@media (max-width: 768px) {
    #concert-dates-container .event-date-item {
        flex-direction: column;
        text-align: center;
        padding: 15px !important;
    }
    
    #concert-dates-container .event-date-item > div {
        width: 100%;
        margin-bottom: 10px;
    }
    
    #concert-dates-container .event-date-item > div:last-child {
        margin-bottom: 0;
    }
    
    #concert-dates-container .btn-sm {
        width: 100%;
    }
}