#dataEntryScreen {
    position: relative;
    width: 100%;
    height: calc(100vh - 86px);
    background: #000;
    overflow: hidden;
}

.data-entry-workspace {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 56px;
    background: #000;
}

.data-entry-toolbar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: #111;
    border-top: 1px solid #333;
}

.data-entry-tool {
    min-width: 110px;
    height: 38px;

    border: 1px solid #444;
    border-radius: 5px;

    background: #222;
    color: #fff;

    cursor: pointer;
}
/* =========================================================
   SEPARADOR DEL GESTOR
   ========================================================= */

.data-entry-manager-separator {

    width: 100%;

    height: 1px;

    margin: 4px 0 14px 0;

    background: #555;

}


/* =========================================================
   ICONOS DEL GESTOR
   ========================================================= */

.data-entry-manager-icons {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 10px;

    justify-items: center;

    align-items: center;

}


/* =========================================================
   BOTÓN DE ICONO
   ========================================================= */

.data-entry-manager-icon {

    width: 48px;

    height: 48px;

    padding: 4px;

    margin: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 5px;

    background: transparent;

    cursor: pointer;

}


/* =========================================================
   IMAGEN
   ========================================================= */

.data-entry-manager-icon img {

    display: block;

    width: 40px;

    height: 40px;

    object-fit: contain;

}


/* =========================================================
   ICONO DESACTIVADO
   ========================================================= */

.data-entry-manager-icon.disabled {

    cursor: default;

    opacity: 0.35;

    filter: grayscale(100%);

}


/* =========================================================
   ICONO ACTIVO
   ========================================================= */

.data-entry-manager-icon.active {

    opacity: 1;

    filter: none;

    cursor: pointer;

}


/* =========================================================
   HOVER DEL ICONO ACTIVO
   ========================================================= */

.data-entry-manager-icon.active:hover {

    background: #3a3a3a;

}

.data-entry-tool:hover {
    background: #333;
}
