
/* cambiar de color amarillo al pasar solo el mouse al componente */
.myhover :hover {
    box-shadow: '1px 0px 10px rgba(0, 0,0, 0.7)';
    background-color: rgba(252, 190, 143, 0.164);
}

/**/
.selection :focus {
    background-color: rgba(248, 160, 28, 0.219);
    border-block-end-width: 1;
    border: 0;
    
}


