/* Styles pour le modal */
#sd-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

#sd-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 600px;
    width: 90%;
    text-align: center;
    border-radius: 8px;
}

#sd-modal img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.sd-modal-content {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

#sd-close {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

#sd-close:hover {
    background: #005177;
}