:root { --ason-red: #D71920; --platinum: #E5E4E2; }
.bg-red { background-color: var(--ason-red); }
.text-red { color: var(--ason-red); }
.hover-red:hover { background-color: #b3141a; }

/* Custom Ring Effect for Form */
input:focus, select:focus, textarea:focus {
    border-color: var(--ason-red) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.1);
}
html { scroll-behavior: smooth; }

/* Add a green background utility for the Add button feedback */
.bg-green-600 {
  background-color: #16a34a !important;
  color: #fff !important;
}