/* Stile per indicare che un'immagine è cliccabile */
img.cgm-trigger-image {
    cursor: pointer;
}

/* Stili del modale (invariati) */
.cgm-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); z-index: 99998; display: flex; align-items: center; justify-content: center; }
body.cgm-modal-active { overflow: hidden; }
.cgm-modal-container { background: var(--cgm-modal-bg, #ffffff); padding: 30px; border-radius: 8px; max-width: var(--cgm-modal-max-width, 800px); width: 90%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 5px 20px rgba(0,0,0,0.3); text-align: center; color: var(--cgm-modal-text-color, #333333); }
.cgm-modal-close { position: absolute; top: 15px; right: 15px; font-size: 28px; font-weight: bold; cursor: pointer; line-height: 1; color: inherit; }
.cgm-modal-images { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.cgm-modal-images img { max-width: 48%; height: auto; border-radius: 4px; }
.cgm-modal-title { font-size: 28px; font-weight: bold; margin-top: 0; margin-bottom: 10px; color: inherit; }
.cgm-modal-description { font-size: 16px; line-height: 1.6; margin-bottom: 25px; }
.cgm-modal-button { display: inline-block; padding: 12px 25px; background-color: var(--cgm-btn-color, #ff4136); color: var(--cgm-btn-text-color, #ffffff); text-decoration: none; font-weight: bold; border-radius: 5px; transition: background-color 0.3s ease; }
.cgm-modal-button:hover { background-color: var(--cgm-btn-hover-color, #d63027); color: var(--cgm-btn-text-color, #ffffff); }