/* Bootstrapのprimaryカラーを上書き */
:root {
  --bs-primary: #1976d2;
  --bs-primary-rgb: 25, 118, 210;
}

.btn-primary {
  --bs-btn-bg: #1976d2;
  --bs-btn-border-color: #1976d2;
  --bs-btn-hover-bg: #1565c0;
  --bs-btn-hover-border-color: #1565c0;
  --bs-btn-active-bg: #1565c0;
  --bs-btn-active-border-color: #1565c0;
  --bs-btn-disabled-bg: #1976d2;
  --bs-btn-disabled-border-color: #1976d2;
}

.bg-primary {
  background-color: #1976d2 !important;
}

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

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