:root {
    --bs-primary: #1E78D3;
}
.nowrap {
    white-space: nowrap;
}
.dataTable thead {
    background-color: var(--bs-primary);
    color:white;
}
textarea {
    min-height: 64px;
    max-height: 200px;
}
.dataTable tr{
    font-size: 14.5px;
}
table tr td {
    vertical-align: middle !important;
}
label {
    margin-bottom: 6px;
    width: 100%;
}
.modal-scroll {
    overflow-y: auto;
    height: calc(100vh - 200px);
}
.flex {
    display: flex;
    gap: 8px;
}
.cu {
    background-color: #093E74;
    border-color: var(--bs-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 4px;
}
.cu img {
    width: 24px;
}
fieldset {
    width: 100%;
    padding: 12px 8px 24px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, .125);
}
legend {
    width: initial;
    padding-right: 4px;
    padding-left: 4px;
    font-size: 17px;
    margin: 0;
}
::-webkit-scrollbar {
    width: 4px; /* Ancho de la barra de desplazamiento vertical */
    height: 4px; /* Ancho de la barra de desplazamiento horizontal */
}
::-webkit-scrollbar-thumb {
	background-color: #AAA; /* Color del pulgar (barra móvil) */
}

::-webkit-scrollbar-track {
	background-color: #EEE; /* Color de la pista (fondo de la barra) */
}