.language-toggle {
   position: fixed; /* Position it relative to the browser window */
   bottom: 90px; /* Adjust to place it above the music button */
   left: 52px; /* Position it on the left side of the screen */
   z-index: 100; /* Ensure it stays above other elements like the nav bar */
   display: flex; /* Enable flexbox layout */
   flex-direction: column; /* Stack items vertically */
   align-items: center; /* Center items horizontally */
}

.language-toggle a {
   margin: 5px 0; /* Space out the flags vertically */
}

.language-toggle .flag-icon {
   font-size: 24px;
   cursor: pointer;
}
