/* Определение красных цветов */
.text-red-600 {
  color: #dc2626 !important;
  font-weight: bold !important;
}

.border-red-600 {
  border-color: #dc2626 !important;
}

.bg-red-600 {
  background-color: #dc2626 !important;
}

/* Дополнительные красные оттенки */
.text-red-500 {
  color: #ef4444 !important;
  font-weight: bold !important;
}

.text-red-700 {
  color: #b91c1c !important;
  font-weight: bold !important;
}

.border-red-500 {
  border-color: #ef4444 !important;
}

.bg-red-500 {
  background-color: #ef4444 !important;
}

/* Стили для кнопок */
.btn-red {
  color: #dc2626 !important;
  border-color: #dc2626 !important;
  font-weight: bold !important;
}

.btn-red:hover {
  background-color: #dc2626 !important;
  color: white !important;
}

/* Стили для ссылок */
.link-red {
  color: #dc2626 !important;
  font-weight: bold !important;
  text-decoration: none !important;
}

.link-red:hover {
  color: #b91c1c !important;
  text-decoration: underline !important;
} 