/* Custom Color Override - Blue to Red */
:root {
  /* Primary Red Colors - Override Phoenix Blue */
  --phoenix-primary: #dc3545 !important; /* Bootstrap Red */
  --phoenix-primary-soft: #fff5f6 !important;
  --phoenix-primary-100: #ffe5e8 !important;
  --phoenix-primary-200: #ffadb6 !important;
  --phoenix-primary-300: #ff858f !important;
  --phoenix-primary-500: #c70000 !important;
  --phoenix-primary-600: #a00000 !important;
  --phoenix-primary-rgb: 220, 53, 69 !important;
  --phoenix-primary-soft-rgb: 255, 245, 246 !important;
  --phoenix-primary-100-rgb: 255, 229, 232 !important;
  
  /* Bootstrap Primary Override */
  --bs-primary: #dc3545 !important;
  --bs-primary-rgb: 220, 53, 69 !important;
}

/* Button Primary - Red */
.btn-primary {
  --bs-btn-bg: #dc3545 !important;
  --bs-btn-border-color: #dc3545 !important;
  --bs-btn-hover-bg: #bb2d3b !important;
  --bs-btn-hover-border-color: #b02a37 !important;
  --bs-btn-active-bg: #b02a37 !important;
  --bs-btn-active-border-color: #a52834 !important;
}

/* Link Colors */
a {
  --bs-link-color: #dc3545 !important;
  --bs-link-hover-color: #bb2d3b !important;
}

/* Focus States */
.form-control:focus,
.form-select:focus {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

/* Sidebar Active Link */
.nav-link.active {
  color: #dc3545 !important;
}

/* Phoenix Specific Classes */
.bg-primary-subtle {
  background-color: #fff5f6 !important;
}

.text-primary {
  color: #dc3545 !important;
}

.border-primary {
  border-color: #dc3545 !important;
}
