/* Font Switcher Styles */
.font-switcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  direction: ltr;
}

.font-toggle-btn {
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.font-toggle-btn:hover {
  background-color: #555;
  transform: translateY(-2px);
}

.font-dropdown {
  position: absolute;
  bottom: 60px;
  right: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.font-dropdown.show {
  display: flex;
}

.font-dropdown button {
  background: none;
  border: none;
  padding: 12px 16px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 14px;
  color: #333;
}

.font-dropdown button:hover {
  background-color: #f0f0f0;
}

.font-dropdown button:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.font-dropdown button:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* RTL support */
[dir="rtl"] .font-switcher {
  right: auto;
  left: 20px;
}

[dir="rtl"] .font-dropdown {
  right: auto;
  left: 0;
}

[dir="rtl"] .font-dropdown button {
  text-align: right;
}
