.editor-container {
    height: 300px;
    position: relative;
    margin-bottom: 15px;
}

.editor {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.valid {
    border-left: 5px solid #28a745;
}

.invalid {
    border-left: 5px solid #dc3545;
}

.property-tooltip {
    position: fixed;
    z-index: 1000;
    background: white;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    pointer-events: none;
}

.status-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* For the save notification */
.position-fixed {
    z-index: 2000;
}

