body {
    background-color: #f8f9fa;
}

.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
}

.card-img-top {
    height: 400px;
    object-fit: cover;
}

.azure {
    color: azure;
}

.white-text {
    color: #fff !important;
}

.aspect-ratio-poster {
    position: relative;
    width: 100%;
    padding-bottom: 148.33%; /* 890/600 ≈ 1.4833 or ~3:2 ratio */
    overflow: hidden;
}

.aspect-ratio-poster img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

/* Calendar Styles */
.calendar-container {
    //background: #1a1a2e;
    border-radius: 10px;
    padding: 20px;
    //box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

.district-filter {
    margin-bottom: 20px;
}

.district-filter .form-label {
    color: #e94560;
    font-weight: bold;
}

.district-filter .form-select {
    background: #403f3f;
    border: 1px solid #403f3f;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
}

.district-filter .form-select:focus {
    border-color: #e94560;
    box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25);
}

.calendar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-title {
    margin: 0;
    font-size: 1.5rem;
    color: #e94560;
}

.nav-btn {
    background: #403f3f;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #e94560;
    transform: scale(1.1);
}

.calendar-wrapper {
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #e94560 #1a1a2e;
}

.calendar-wrapper::-webkit-scrollbar {
    height: 8px;
}

.calendar-wrapper::-webkit-scrollbar-track {
    background: #1a1a2e;
}

.calendar-wrapper::-webkit-scrollbar-thumb {
    background-color: #e94560;
    border-radius: 10px;
}

.calendar {
    display: flex;
    gap: 15px;
    min-width: max-content;
}

.calendar-day {
    min-width: 80px;
    text-align: center;
    padding: 15px 10px;
    background: #403f3f;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.calendar-day:hover:not(.disabled) {
    background: hsl(0, 1%, 30%);
    transform: translateY(-5px);
}

.calendar-day.selected {
    background: #e94560;
    border-color: #ff7a8a;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.calendar-day.disabled {
    background: hsl(0, 1%, 20%);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

.calendar-day.disabled:hover {
    background: hsl(0, 1%, 20%);
    transform: none;
}

.day-name {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #ffffff;
}

.day-number {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 5px 0;
}

.month-name {
    font-size: 0.8rem;
    color: #ffffff;
}

.screenings-container {
    min-height: 200px;
}

.district-section {
    margin-bottom: 30px;
    border: 1px solid #403f3f;
    border-radius: 10px;
    overflow: hidden;
}

.district-section.filtered {
    border: 1px solid #403f3f;
    background: rgba(15, 52, 96, 0.3);
}

.district-header {
    background: #403f3f;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.district-header h3 {
    margin: 0;
    color: #e94560;
    font-size: 1.4rem;
}

.district-screenings-count {
    background: rgba(233, 69, 96, 0.2);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.cinema-section {
    margin-bottom: 20px;
    padding: 0 20px;
}

.cinema-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #403f3f;
}

.cinema-header h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1.2rem;
}

.cinema-map-link {
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.cinema-map-link:hover {
    color: #e94560;
}

.cinema-map-link i {
    margin-right: 5px;
}

.screening-card {
    background: #403f3f;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid #403f3f;
    position: relative;
    overflow: hidden;
}

.screening-card:hover {
    transform: translateY(-3px);
    border-color: #e94560;
}

.screening-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #e94560;
}

.screening-time {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e94560;
    margin-bottom: 10px;
}

.screening-version {
    font-size: 0.9rem;
    color: #ffffff;
}

.no-screenings {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #ffffff;
}

.no-screenings i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.screenings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #403f3f;
}

.screenings-header h3 {
    margin: 0;
    color: #e94560;
}

.screenings-count {
    background: #403f3f;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.back-button-section {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.back-button-section .btn {
    background: #403f3f;
    border: 1px solid #403f3f;
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-button-section .btn:hover {
    background: #403f3f;
    transform: translateY(-1px);
}

.back-button-section .btn i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .calendar-day {
        min-width: 70px;
        padding: 10px 5px;
    }
    
    .day-number {
        font-size: 1.5rem;
    }
    
    .calendar-title {
        font-size: 1.2rem;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .screening-time {
        font-size: 1.5rem;
    }
    
    .district-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .district-screenings-count {
        margin-top: 10px;
    }
    
    .cinema-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cinema-map-link {
        margin-top: 10px;
    }
    
    .col-md-8 {
        margin-top: 20px;
    }
    
    .back-button-section .btn {
        width: 100%;
        padding: 10px;
    }
}

.original-title {
    color: #a9afc3 !important;
}

.text-muted {
    color: #a9afc3 !important;
}
.cz1 {
      position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: hsl(210, 11%, 21%);
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.title-text {
    color: #fff;
}

.subtitle-text {
    color: #a9afc3;
}

.calendar-color-1 {
    background: #403f3f !important;
    border: 1px solid #403f3f;
}

.calendar-color-1:hover {
    background: hsl(0, 1%, 30%) !important;
}