/* Editor Panel Styles */
#live-editor {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 300px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
    transform: translateX(320px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

#live-editor.active {
    transform: translateX(0);
}

#editor-toggle {
    position: absolute;
    top: 20px;
    left: -50px;
    width: 50px;
    height: 50px;
    background: #00d084;
    color: white;
    border-radius: 12px 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 20px;
}

.editor-header {
    background: #00d084;
    color: white;
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.editor-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.editor-content {
    padding: 20px;
}

.editor-group {
    margin-bottom: 20px;
}

.editor-group h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.editor-field {
    margin-bottom: 15px;
}

.editor-field label {
    display: block;
    font-size: 12px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}

.editor-field input[type="text"],
.editor-field textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
    transition: 0.2s;
}

.editor-field input[type="text"]:focus,
.editor-field textarea:focus {
    border-color: #00d084;
    outline: none;
}

.editor-field input[type="color"] {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: none;
}

.editor-info {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 10px;
}