.btn-primary{
    background-color: #CD0028 !important;
    border: 1px solid transparent !important;
    border-radius: 5px !important;
}


input[type="text"],
input[type="date"],
input[type="number"],
input[type="email"],
select,
textarea {
    background-color: #f3f3f3f7 !important;
}


.infoReclamo{
     
    background-size: cover; /* Ajusta el tamaño de la imagen */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */

}


.cargando {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Fondo semitransparente */
    z-index: 9999; /* Asegúrate de que esté por encima de otros elementos */
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    border: 8px solid #f3f3f3; /* Color del fondo */
    border-top: 8px solid #cd0028; /* Color del spinner */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Animación de giro */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.form-section {
    margin-bottom: 20px;
}
.form-section h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}
.form-section label {
    display: block;
    margin-bottom: 5px;
}
.form-section input, .form-section select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
}
.form-section table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.form-section table, .form-section th, .form-section td {
    border: 1px solid #000;
}
.form-section th, .form-section td {
    padding: 8px;
    text-align: left;
}

.detalles{
    font-size: 9px !important;
}

.informativos{
    font-size: 10px !important;
}

/* Estilo para el contenedor tipo fila */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px; /* Espaciado similar a Bootstrap */
    margin-left: -15px;
}

/* Estilo para cada columna */
.col {
    flex: 1; /* Cada columna ocupará una fracción igual del espacio disponible */
    padding-right: 15px;
    padding-left: 15px;
}

/* Ejemplo de tamaños de columna personalizados */
.col-6 {
    flex: 0 0 50%; /* Ocupa el 50% del ancho del contenedor */
    max-width: 50%;
}

.col-4 {
    flex: 0 0 33.33%; /* Ocupa el 33.33% del ancho del contenedor */
    max-width: 33.33%;
}

.col-3 {
    flex: 0 0 25%; /* Ocupa el 25% del ancho del contenedor */
    max-width: 25%;
}


