/* Dostosowanie kolorów Tailwind do oryginalnej palety */
.text-yellow-500, .text-yellow-600, .text-yellow-800 {
  color: #c8a97e !important; /* Twój złoty kolor */
}

.bg-yellow-500, .bg-yellow-600, .bg-yellow-700 {
  background-color: #c8a97e !important;
}

.ring-yellow-500 {
  --tw-ring-color: #c8a97e !important;
}

.hover\:bg-yellow-700:hover {
  background-color: #b89566 !important; /* Ciemniejszy odcień złotego */
}

.hover\:text-yellow-800:hover {
  color: #b89566 !important;
}

.text-gray-900, .text-gray-800 {
  color: #081018 !important; /* Twój ciemny granat */
}

.bg-gray-900 {
  background-color: #081018 !important;
}

.text-gray-600, .text-gray-700 {
  color: rgba(33, 37, 41, 0.8) !important; /* Twój ciemny kolor z opacity */
}

.focus\:ring-yellow-500:focus {
  --tw-ring-color: #c8a97e !important;
}

.focus\:border-yellow-500:focus {
  border-color: #c8a97e !important;
}

/* Dodatkowe dostosowania */
.font-serif {
  font-family: 'Playfair Display', serif !important;
}