.tooltiptext {
    visibility: hidden;
    width: 60px;
    background-color: black;
    font-family: sans-serif !important;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1000; /* Asegúrate de que el tooltip esté por encima de otros elementos */
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover >.tooltiptext,
.btn:focus >.tooltiptext {
    visibility: visible;
    opacity: 1;
}
