/* Styles for the Pause/Play Background Video button */
#pause-play-bg-video-btn,
[id^="videobtn"] {
    /* Reset default button styles */
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;

    /* Inherit text styles from parent */
    font: inherit;
    color: inherit;
    text-align: inherit;

    /* Ensure inline-flex display for better alignment */
    display: inline-flex;
    align-items: center;

    /* Add positioning to add z-index to prevent elements coverring the button */
    position: relative;
    z-index: 10;

    /* Prevent text selection */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
	
	/* Smooth transition for hover effects */
    transition: opacity 0.3s ease;
}

#pause-play-bg-video-btn:hover,
[id^="videobtn"]:hover{
    opacity: 0.7;
}

/* Style for the icon */
#pause-play-bg-video-btn i,
[id^="videobtn"] i{
    margin: 0 0.3rem;
    font-family: "Font Awesome 5 Free";
	font-size: 1.2em; /* Slightly larger than the text */
    line-height: 1;
}