/* Start custom CSS for html, class: .elementor-element-742fabc *//* Button Container */
#button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px; /* Spacing between buttons */
}

/* Buttons (Play, Mute, Unmute) */
#play-button,
#mute-button {
    padding: 10px;
    background-color: #0073e6; /* Default background color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    min-width: 100px; /* Ensures all buttons have the same width */
    text-align: center;
}

/* Play Button Specific Styling */
#play-button {
    background-color: #28a/* End custom CSS */