/* Estilos para el botÃ³n flotante y los botones de opciones */

#liveChatButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #079aeb;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 25px;
    z-index: 1000;
    transition: background-color 0.3s, transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1); /* DuraciÃ³n de 0.6s y suavizado */
}

#liveChatButton:hover {
    background-color: #0056b3;
    transform: scale(1.1); /* Efecto de aumento ligero */
}

#optionButtons {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

.optionButton {
    background-color: #ffc107;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s;
    position: relative;
}

.optionButton:hover {
    background-color: #eab105;
}

.optionButton span {
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    font-size: 14px;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.optionButton:hover span {
    opacity: 1;
}

.lyrics {
    text-align: left;
    line-height: 1.6; /* Espaciado de lÃ­neas */
}

.tag-number {
    background-color: #079aeb;   /* Fondo azul */
    border: 1px solid #079aeb;   /* Borde con un tono un poco m¨¢s oscuro */
    border-radius: 3px;          /* Bordes redondeados */
    padding: 1px 7px;            /* 2px verticales y 7px horizontales */
    color: #fff;                 /* Texto blanco */
    font-weight: bold;           /* Texto en negrita */
    display: inline-block;       /* Para que respete el padding y el fondo */
    text-align: center;          /* Centrar el contenido */
}
