#holidayModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#holidayModal .modal-header {
    padding: 0.5rem 1rem;
    background-color: transparent;
}

#holidayModal .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
    background-color: white;
    border-radius: 50%;
    padding: 0.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#holidayModal .modal-body {
    padding: 2rem;
}

#holidayModal img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border-color: #f2f2f2;
}

@media (max-width: 576px) {
    #holidayModal .modal-dialog {
        margin: 1rem;
    }
    
    #holidayModal .modal-body {
        padding: 1rem;
    }
}