.floating-buttons {
    position: fixed;
    bottom: 20px; /* Adjust this value to set the desired distance from the bottom */
    left: 20px; /* Adjust this value to set the desired distance from the left */
    z-index: 999; /* Ensures the buttons are above other content */
}

.youtube-button {
    background-color: #ff0000; /* Red color for YouTube */
}

.telegram-button {
    background-color: #0088cc; /* Blue color for Telegram */
}

.whatsapp-button {
    background-color: #25d366; /* WhatsApp green background color */
}

.floating-buttons button {
    color: #fff;
    border: none;
    border-radius: 50%; /* Makes the buttons round */
    width: 50px; /* Set the desired button size */
    height: 50px; /* Set the desired button size */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px; /* Spacing between buttons */
}

.floating-buttons button i {
    font-size: 24px; /* Adjust the icon size as needed */
}
