#dropzone-external {
    width: 350px;
    height: 350px;
    background-color: rgba(183, 183, 183, 0.1);
    border-width: 2px;
    border-style: dashed;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    #dropzone-external > * {
        pointer-events: none;
    }

    #dropzone-external.dropzone-hover {
        border-style: solid;
    }

.upload-container > span {
    display: flex;
    justify-content: center; /* centers horizontally */
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 16px;
}
.outerCenter {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;     /* optional: centers vertically */
  height: 200px;           /* just for demo purposes */
  background-color: #f0f0f0;
}

#dropzone-image {
    max-width: 100%;
    max-height: 100%;
}

#dropzone-text > span {
    opacity: 0.5;
}

.upload-progress {
    display: flex;
    margin-top: 10px;
}

.flex-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
img {
  max-width: 100%;
  height: auto;
  display: block; /* removes unwanted spacing below the image */
}
.dx-htmleditor {
    box-sizing: border-box;
    max-width: 99%;
    overflow-x: hidden;
}
.custom-editor-margin {
    margin-left: 10px; /* Adjust as needed */
    margin-right: 10px; /* Optional: keep symmetry */
    box-sizing: border-box; /* Prevent overflow */
}
