.libro-reclamaciones-container {
    padding-top: 100px;
    padding-bottom: 40px;
    background-color: #f9f9f9;
}

.form-reclamaciones-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.form-header .logo-reclamaciones {
    max-height: 60px;
    margin-bottom: 15px;
}

.form-header h2 {
    font-weight: 600;
    color: #333;
}

.form-header p {
    color: #666;
    font-size: 15px;
}

.form-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
}

.form-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0d6efd;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.form-control {
    border-radius: 4px;
    box-shadow: none;
    border-color: #ccc;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.25);
}

.required {
    color: red;
    font-weight: bold;
}

/* Estilos para radio buttons personalizados */
.custom-radio-group {
    display: flex;
    flex-direction: column;
}

.custom-radio {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.custom-radio input[type="radio"] {
    display: none; /* Ocultar el radio button por defecto */
}

.custom-radio .radio-label {
    position: relative;
    padding-left: 30px;
    font-weight: normal;
}

.custom-radio .radio-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.2s;
}

.custom-radio .radio-label::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0d6efd;
    transition: all 0.2s;
}

.custom-radio input[type="radio"]:checked + .radio-label::before {
    border-color: #0d6efd;
}

.custom-radio input[type="radio"]:checked + .radio-label::after {
    transform: translateY(-50%) scale(1);
}

.form-footer {
    text-align: center;
    margin-top: 30px;
}

/* Estilos para checkbox personalizado */
.custom-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    display: none; /* Ocultar el checkbox por defecto */
}

.custom-checkbox .checkbox-label {
    position: relative;
    padding-left: 30px;
    font-weight: normal;
    color: #666;
}

.custom-checkbox label.checkbox-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-45%); /* Ajuste de alineación vertical */
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.2s;
}

.custom-checkbox input[type="checkbox"]:checked + label.checkbox-label::before {
    background-color: #0d6efd;
    border-color: #0d6efd;
    content: '\2713'; /* Código para el checkmark ✓ */
    color: #fff;
    text-align: center;
    line-height: 16px;
}

/* Estilos para el modal de Términos y Condiciones */
#modalTerminos .modal-body {
    text-align: justify;
}

#modalTerminos .modal-body h5 {
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Forzar fondo blanco en el modal de términos */
#modalTerminos .modal-content {
    background-color: #ffffff !important;
    color: #333;
}

/* Estilos para el botón de envío del formulario */
.form-footer .btn-primary {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    transition: background-color 0.3s, border-color 0.3s;
}

.form-footer .btn-primary:hover {
    background-color: #0b5ed7 !important; /* Un azul un poco más oscuro para el hover */
    border-color: #0a58ca !important;
}

/* Estilos para el botón del modal */
#modalTerminos .modal-footer .btn-primary {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

#modalTerminos .modal-footer .btn-primary:hover {
    background-color: #0b5ed7 !important;
    border-color: #0a58ca !important;
}