/* Universal Image Cropper Modal Styles */
.cropper-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.cropper-modal-overlay.active {
    display: flex;
}
.cropper-modal-content {
    background: #fff;
    border-radius: 8px;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.cropper-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}
.cropper-modal-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}
.cropper-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    line-height: 1;
}
.cropper-modal-body {
    padding: 20px;
    flex: 1;
    min-height: 300px;
    max-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f3f4f6;
}
.cropper-modal-body img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}
.cropper-modal-footer {
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
.cropper-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.cropper-btn-cancel {
    background: #fff;
    border: 1px solid #d1d5db;
    color: #374151;
}
.cropper-btn-cancel:hover {
    background: #f9fafb;
}
.cropper-btn-save {
    background: #0ea5e9;
    color: #fff;
}
.cropper-btn-save:hover {
    background: #0284c7;
}
