﻿/* Boton de toolbar */
.boton-barra-herramientas {
    height: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 7px;
    padding-right: 7px;
    font-size: 14px;
    border: 0px;
    overflow-y: hidden;
    overflow-x: hidden;
    background-color: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    /* item-herramienta: */
    box-sizing: border-box;
    text-align: center;
    flex-shrink: 0; /* Impide que los ítems se reduzcan */
    border-radius:4px;
}

    .boton-barra-herramientas:hover {
        background-color: whitesmoke;
        border-color: lightgray;
    }

    .boton-barra-herramientas:active {
        background-color: lightgray;
    }

.barra-herramientas {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    height: 40px;
    padding: 5px;
    /* IE and Edge */
    -ms-overflow-style: none;
    /* Firefox */
    scrollbar-width: none
}

.borde-sombra-suave {
    border: 1px solid gainsboro;
    box-shadow: 0px 3px 6px -5px gray;
}

.color-fondo-blancohumo {
    background-color: #F5F4F1;
}




/* Editor texto para toolbar */
.editor-barra-herramientas {
    width: 100%;
    height: 100%;
    /* Remover estilos predeterminados */
    border: none;
    outline: none;
    background-color: #f5f5f5;
    color: black;
    padding: 0px 7px 0px 7px;
    border-radius: 5px;
    border: 1px solid gainsboro;
}

    .editor-barra-herramientas:focus {
        border: 1px solid dodgerblue;
    }
