.modal-container {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	max-width: 100% !important;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    position: relative;
    border-radius: 5px;
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: black;
}

.modal-instructions {
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Editor Styles */
.modal-container-editor {
    border: 1px dashed #ccc;
    padding: 20px;
    border-radius: 5px;
}

.modal-content-editor {
    margin-top: 15px;
}

/* Make sure modal is visible in editor */
.editor-styles-wrapper .modal-container {
    display: block;
    position: relative;
    background: none;
}