/* --- ESTILOS DEL FORMULARIO SHERIFF (MANTENIDOS) --- */
.sheriff-form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px 40px;
    border: 5px solid #8d6e63; /* Borde de madera oscura */
    background-color: #fff8e1; /* Fondo de papel */
    box-shadow: 10px 10px 0px 0px #5d4037; /* Sombra que simula grosor */
    font-family: 'Times New Roman', serif;
    color: #3e2723;
}

.sheriff-form-container h1, .sheriff-form-container h2 {
    text-align: center;
    color: #1b5e20; /* Color verde/Sheriff */
    border-bottom: 3px solid #1b5e20;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.sheriff-form-container hr {
    border: 1px solid #8d6e63;
    margin-bottom: 20px;
}

.sheriff-form-container .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-style: italic;
}

.sheriff-form-container input[type="text"],
.sheriff-form-container input[type="tel"],
.sheriff-form-container input[type="number"],
.sheriff-form-container textarea,
.sheriff-form-container select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px dashed #8d6e63; /* Borde de registro manual */
    background-color: #fff;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Times New Roman', serif;
}

.sheriff-form-container button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #1b5e20;
    color: white;
    border: 3px solid #003300;
    font-size: 18px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background-color 0.3s;
}

.sheriff-form-container button:hover {
    background-color: #2e7d32;
}

/* MENSAJES DE ESTADO (MANTENIDOS) */
.sheriff-form-container .status-message {
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    border: 2px solid;
    font-weight: bold;
}
/* ... y las clases .status-success / .status-error ... */
/* --- ESTILOS DE ESTRUCTURA Y ENCABEZADO MÁS FINO (SIN MENÚ) --- */

.site-header {
    text-align: center;
    padding: 10px 20px; /* Relleno ligero */
    background-color: #3e2723; /* Marrón oscuro */
    color: #fff8e1; /* Color Crema/Papel */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
}

/* Estilos de Marca/Título */
.site-branding {
    margin: 0;
    line-height: 1; 
    padding: 5px 0; /* Relleno ligero */
}

.site-header .site-title a {
    color: #ffd700; /* Oro */
    font-size: 2.2em; /* Tamaño del título */
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 2px; /* Más espaciado para un aspecto elegante */
    text-transform: uppercase;
    display: inline-block;
}

.site-header .site-description {
    color: #f7e4c7; /* Color Pergamino */
    font-style: italic;
    font-size: 0.9em; 
    margin-top: 5px;
}

/* ELIMINACIÓN VISUAL DE LA NAVEGACIÓN */
.main-navigation {
    display: none; /* Ocultamos completamente la navegación */
}

/* --- ESTILOS DE PIE DE PÁGINA (Sin cambios) --- */
.site-footer {
    text-align: center;
    padding: 10px 0;
    background-color: #3e2723;
    color: #fff8e1;
    font-size: 0.85em;
}
.site-footer a {
    color: #ffd700;
    text-decoration: none;
}
/* El resto de estilos del formulario y base deben permanecer igual */