/* Image Creator Modal Fix */
.image-creator-modal {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999 !important;
    overflow-y: auto;
    display: none;
    /* Default hidden */
    justify-content: center;
    /* Flex centering if display becomes flex */
    align-items: center;
}

/* Ensure centering when displayed */
.image-creator-modal[style*="display: block"],
.image-creator-modal[style*="display: flex"] {
    display: flex !important;
}

.image-creator-content {
    position: relative;
    background: #fff;
    margin: auto;
    /* For flex centering */
    padding: 20px;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    overflow-y: auto;
}