/* =========================
   MODAL
========================= */
#cropModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;

    justify-content: center;
    align-items: center;
}

/* =========================
   MODAL BOX
========================= */
#cropModal .modal-box {
    background: #fff;
    border-radius: 10px;

    width: 100vw;
    height: 100vh;

    max-width: 100%;
    max-height: 100%;

    display: flex;
    flex-direction: column;
    overflow: hidden; /* 🔥 prevents right drift */
}

/* =========================
   IMAGE AREA
========================= */
#cropImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* =========================
   CROP FIX (VERY IMPORTANT)
========================= */
.cropper-container,
.cropper-wrap-box,
.cropper-canvas {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

/* =========================
   BUTTON BAR
========================= */
.crop-actions {
    display: flex;
    gap: 8px;
    padding: 10px;
    background: #fff;
}

/* BUTTONS */
.crop-actions button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    background: #2e7d32;
    color: #fff;
}

.crop-actions button.secondary {
    background: #777;
}

/* =========================
   LOCK BACKGROUND SCROLL
========================= */
body.modal-open {
    overflow: hidden;
}