.ef-modal-cropper {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    align-items: center; justify-content: center;
}
.ef-modal-cropper-content {
    background: white; padding: 20px; border-radius: 12px;
    max-width: 90vw; width: 450px;
}
.img-container { width: 100%; max-height: 400px; }
.cropper-buttons { display: flex; gap: 10px; margin-top: 15px; }
.btn-crop-save { background: #003366; color: white; flex: 2; height: 45px; border: none; border-radius: 8px; cursor: pointer; }
.btn-crop-cancel { background: #ccc; color: #333; flex: 1; border: none; border-radius: 8px; cursor: pointer; }

.spinner {
    border: 3px solid rgba(0, 51, 102, 0.1);
    border-top: 3px solid #003366;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }