  /* Base styling for the language switcher */
  .language-switcher {
    position: fixed;
    top: 0;
    right: 119px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    width: 43px;
    height: 43px;
    z-index: 1202;
}

.language-box {
  padding: 10px 10px;
  /* margin-left: 10px; */
  background-color: #e9d3b3;
  color: #302e25;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
  /* border-radius: 5px; */
}

/* Highlight the selected language */
.language-box.en-box.active {
    background-color: #febd17; /* Yellow for selected language */
}

.language-box.ar-box.active {
    background-color: #febd17; /* Yellow for selected language */
}

/* Hover effect */
.language-box:hover {
    background-color: #436E80; /* Bright blue on hover */
    color: white;
}

/* For mobile screen sizes */
@media (max-width: 768px) {
    .language-switcher {
        top: 0px;
        left: 56px;
    }

    .language-box {
        padding: 8px 15px;
        margin-left: 5px;
    }
}