.circle-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px; /* Adjust width as needed */
    height: 45px; /* Adjust height as needed */
    background-color: white;
    color: black;
    text-align: center;
    border-radius: 50%; /* Makes the div a circle */
    font-size: calc(11px + 1vw); /* Responsive font size */
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
    transition: background-color 0.3s ease, color 0.3s ease; /* Optional: Smooth transition */
    text-decoration: none; /* Remove underline from links */
}

.circle-button:hover {
    background-color: #dedede; /* Optional: Change background on hover */
    color: #333; /* Optional: Change text color on hover */
}

.language-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Adjust height as needed */
}