/* Contenedor blanco principal */
.form-container {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Encabezado con la franja lateral oscura */
.seccion-header {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    border-left: 5px solid #2c3e50;
    border: 1px solid #eee;
    border-left: 5px solid #2c3e50;
}

/* Rejilla para los campos de texto (se adapta sola) */
.grid-campos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Estilo para cada grupo de Etiqueta + Input */
.campo-grupo {
    display: flex;
    flex-direction: column;
}

.campo-grupo label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 14px;
}

.campo-grupo input, 
.campo-grupo select, 
.campo-grupo textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    outline-color: #3498db;
}

/* Botones con los colores de tu marca */
.btn-accion-verde {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-accion-verde:hover { background: #219150; }

.btn-guardar-principal {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.btn-guardar-principal:hover { background: #1a252f; }

/* Estilo para la tabla de detalles dentro del registro */
.tabla-registro {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.tabla-registro thead th {
    position: sticky;
    top: 0;
    background: #2c3e50;
    color: white;
    padding: 12px;
    z-index: 10;
}

.tabla-registro td {
    padding: 10px;
    border: 1px solid #eee;
}