/* Estilos para el botón flotante y los botones de opciones */
#liveChatButton {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Cambiado de right a left */
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 24px;
    z-index: 1000;
    transition: background-color 0.3s;
}

#liveChatButton:hover {
    background-color: #0056b3;
}

#optionButtons {
    position: fixed;
    bottom: 90px;
    left: 20px; /* Cambiado de right a left */
    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;
    left: 60px; /* Cambiado de right a left */
    background: rgba(0, 0, 0, 0.50);
    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 */
}
