/* Change the background color of the hamburger menu when opened */
.wp-block-navigation__responsive-container, .wp-block-navigation-open-animation {
    background-color: #efefef !important;
}

/* Adjust the color of the menu items inside the opened menu */
.wp-block-navigation__responsive-container .wp-block-navigation-item a {
    color: #3a0466 !important; /* e.g., #FFFFFF for white text */
}

/* Apply drop shadow to all video blocks */
.wp-block-video, 
.wp-block-embed {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px; /* Optional: adds rounded corners */
    padding: 5px; /* Optional: adds space between video and shadow */
}