/* Holiday Popup Styles */
#holidayModal .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#holidayModal .modal-header {
    background: linear-gradient(135deg, #d13535 0%, #b40808 100%);
    color: white;
    border-bottom: none;
    padding: 20px 30px;
}

#holidayModal .modal-title {
    font-weight: 700;
    width: 100%;
    text-align: center;
}

#holidayModal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

#holidayModal .modal-body {
    padding: 40px 30px;
    text-align: center;
    background-color: #fff;
    position: relative;
}

#holidayModal .holiday-icon {
    font-size: 4rem;
    color: #d13535;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

#holidayModal .holiday-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

#holidayModal .modal-footer {
    border-top: none;
    justify-content: center;
    padding-bottom: 30px;
}

.snowflakes {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: #e3f2fd;
    font-size: 1.5rem;
    opacity: 0.8;
}

.snowflake:nth-child(1) { left: 10%; animation: fall 5s linear infinite; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 20%; animation: fall 7s linear infinite; animation-delay: 1s; }
.snowflake:nth-child(3) { left: 70%; animation: fall 6s linear infinite; animation-delay: 2s; }
.snowflake:nth-child(4) { left: 80%; animation: fall 8s linear infinite; animation-delay: 0.5s; }

@keyframes fall {
    0% { top: -10%; transform: translateX(0); }
    100% { top: 110%; transform: translateX(20px); }
}
