
/* Estilos de CeldaTextoEditorColeccion */
.contenedorspanedc {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    outline: none;
}

.contenedorceldaedc {
    /* display: flex;
        align-items: center; */
    height: 100%;
    width: 100%;
    outline: none;
}

.textolecturaceldaedc {
    white-space: nowrap;
    overflow-x: hidden;
}

.textoeditorceldaedc {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    outline: none;
    border-width: 0px;
    /*box-sizing: border-box;*/
    /*border: 1px solid green;*/
    background-color: white;
    outline: 1px solid green;
    outline-offset: -1px;
}
/*.textoeditorceldaedc {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    outline: none;
    border-width: 0px;
    box-sizing: border-box;
    border: 1px solid green;
    background-color: white;
}*/




/* Estilos de boton de herramientas del editor de coleecion */
/* Lo estoy poniendo aqui, porque adentro no esta reconociendo*/
.boton-edc-herramientas {
    height: 32px;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    border: 0px;
    background-color: #FBFBFB;
}

    .boton-edc-herramientas:hover {
        background-color: #EFEFEF;
    }

    .boton-edc-herramientas:active {
        background-color: #EFEFEF;
    }



/* Estilos de botones en celdas */
.boton-estandar-editorcoleccion {
    height: 26px; /* un 1px menos que th height*/
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 13px;
    border: 0px;
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: transparent;
}

    .boton-estandar-editorcoleccion:hover {
        background-color: gainsboro;
    }

    .boton-estandar-editorcoleccion:active {
        background-color: gray;
    }





/* Bordes */
.borde-principal-editorcoleccion {
    background-color: #F5F4F1;
    border-width: 1px;
    border-color: red;
    border-style: solid;
    border-radius: 6px;
    box-shadow: 0px 3px 6px -5px gray;
}


.borde-tarjeta {
    border-width: 1px;
    border-color: #EBEBEB; /*lightgray*/
    border-style: solid;
    border-radius: 6px;
    box-shadow: 0px 3px 6px -5px gray;
}




.contenedor-header-grickgrid {
    width: 100%;
    height: 100%;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}