* {
padding-top: 0;
ruby-position: initial;

}
@font-face {
  font-family: 'Cairo';
  src: url('fonts/Cairo-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Apply the Cairo font family to body and other elements */
body,
.language-button {
  font-family: 'Cairo', sans-serif;
}

/* Rest of your CSS rules */
.language-buttons {
  display: flex;
  gap: 10px;
}

/* ... other styles ... */

.language-buttons {
  display: flex;
  gap: 10px;
}

.language-button {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  color: #333; /* Default text color for unselected buttons */
  font-size: 14px; /* Adjust font size as needed */

}

.language-button .flag-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-size: cover; /* Make the background image cover the icon */
}

.language-button.selected {
  border-color: #000000; /* Border color for the selected button */
  color: #ffffff; /* Text color for the selected button */
  background-color: #23262a; /* Background color for the selected button */
}

.language-button:not(.selected) {
  border: none; /* Remove border from unselected buttons */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .language-button {
    font-size: 12px; /* Adjust font size for smaller screens */
  }
}

/* RTL styles */
html[dir="rtl"] .language-buttons {
  gap: 20px; /* Adjust spacing for RTL languages */
}

html[dir="rtl"] .language-button .flag-icon {
  margin-left: 8px; /* Adjust margin for icon positioning in RTL */
}
