:root {
  --color-first: rgb(7, 72, 127);
  --color-second: rgb(200, 16, 46);
  --color-third: rgb(108, 194, 74);
  --color-fourth: rgb(247, 147, 30);
  --color-fifth: rgb(155, 89, 182);

  --bs-primary: var(--color-first) !important;
  --bs-secondary: var(--color-second) !important;
  --bs-info: var(--color-third) !important;
  --bs-warning: var(--color-fourth) !important;
  --bs-danger: var(--color-fifth) !important;
  
  /* Add RGB versions for borders/opacity */
  --bs-primary-rgb: 7, 72, 127 !important;
  --bs-secondary-rgb: 200, 16, 46 !important;
  --bs-info-rgb: 108, 194, 74 !important;
  --bs-warning-rgb: 247, 147, 30 !important;
  --bs-danger-rgb: 155, 89, 182 !important;
}