
html, body { 
    /* height: 100vh; */
    margin: 0;
    padding: 0;
    scroll-behavior: auto;
    overflow-x: auto;
    overflow-y: auto;
}

/* inicio (formularios de registro de usuario y recuperación de contraseña) */
.inicio {
    margin: 1rem;
    padding: 1rem;
}
.inicio-logo-contenedor {
    text-align: center;
}
.inicio-logo {max-width: 12rem;}

.contenedor {
    display: flex;
    height: 100vh;
}
.contenedor-cuerpo {
    flex: 1;

    display: grid;
    grid-template-rows: 60px auto;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: auto;
}
.contenedor-cuerpo-opciones {
    height: calc(100vh - 60px);
    /* padding: 0rem 1rem 0rem 1rem; */
    margin-bottom: 0.5rem;
    overflow-y: auto;
    scroll-behavior: auto;
    scrollbar-color: hsl(0, 0%, 29%) hsl(0, 0%, 96%);
}
.contenedor-menu {
    padding: 0.387rem 1rem 0rem 1rem;
    background-color: rgb(246, 246, 246);
}

.ancho-comitente {
    width: 7rem;
}
.menu-logo { max-height: 2.5rem; margin-left: 1.055rem; margin-right: 0.5rem; }

/* clases de bulma modificadas */
.title {font-size: 1.5rem;}
.subtitle {font-size: 1.25rem; margin-bottom: 1rem;}
.modal-card-head { padding-top: 8px; padding-bottom: 8px;}

/* clases propias */
.pegadizo {
    position: sticky;
    top: 0rem;
    padding: 0.25rem 0rem 0.5rem 0.5rem;
    border-bottom: 1px solid grey;
    background-color: white;
    z-index: 10;
}
.detalle {
    position: absolute;
    width: 70%;
    max-width: 70%;
    z-index: 20;
}
.tabla-titulo {
    padding: 4px 0px 4px 8px;
    background-color: hsl(0, 0%, 29%);
    color: white;
    font-weight: bold;
}
.tabla-cuerpo {
    padding: 0;
}

.etiqueta {
    font-size: 0.9rem !important;
    margin-bottom: 0px !important;
    padding-bottom: 2px !important;
}

.control-chico {
    height: 2.1em !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    padding-top: 0.2rem !important;
    padding-bottom: 0.3rem !important;
}

.control-chico-combo {
    height: 2.1em !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    padding-top: 0.2rem !important;
    padding-bottom: 0.3rem !important;
    padding-left: 0.5rem !important;
}

/* corrección de la flechita del combo */
.select:after {
    margin-top: -0.6rem !important;
}

.datos {
    margin: 0.5rem 0.5rem 0 0.5rem;
}