/* Estilos generales */
body {
    background-color: #f8f9fa;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 850px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-label {
    font-weight: bold;
    color: #333;
}

/* --- ESTILO UNIFICADO PARA TODOS LOS CASILLEROS --- */
.form-control,
.form-select {
    border: 2px solid #dee2e6;
    background-color: #ffffff;
    /* Fondo inicial blanco para todos */
    color: #495057;
    transition: all 0.3s ease;
}

/* EFECTO HOVER: Al pasar el mouse por encima */
.form-control:hover,
.form-select:hover {
    border-color: #8b1d1d;
    background-color: #fff2f2;
    /* Fondo guinda muy claro al pasar el mouse */
    cursor: pointer;
}

/* EFECTO FOCUS: Al hacer clic para escribir */
.form-control:focus,
.form-select:focus {
    border-color: #8b1d1d;
    background-color: #ffffff;
    box-shadow: 0 0 0 0.25rem rgba(139, 29, 29, 0.15);
    outline: none;
}

/* BOTÓN ENVIAR */
.btn-denuncia {
    background-color: #8b1d1d;
    color: white;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-denuncia:hover {
    background-color: #631515;
    color: white;
}

/* PANEL DINÁMICO */
#panelIdentificacion {
    display: none;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-left: 5px solid #8b1d1d;
    /* Detalle visual guinda lateral */
    background-color: #fff;
}

.required-label::after {
    content: "*";
    color: #8b1d1d;
    margin-left: 4px;
}

.form-check-input {
    background-color: #ffffff;
    border-color: #8b1d1d;
    border-width: 1px
}