/* Estilos para el Editor de Tests de Playwright */

.test-editor {
    margin-top: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #e9ecef;
}

.editor-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.test-selector {
    flex: 1;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
    background: white;
}

.test-code {
    width: 100%;
    min-height: 400px;
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    line-height: 1.5;
    background: #f8f9fa;
    resize: vertical;
    margin-bottom: 15px;
}

.editor-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 12px;
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(108, 117, 125, 0.3);
}
