/* Wright Ford Young & Co - Dark Red Theme - Custom Overrides */

/* Remove red focus ring from textbox */
input:focus,
textarea:focus,
[contenteditable="true"]:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Remove focus ring from input containers */
.focus-visible,
*:focus-visible {
  outline-color: transparent !important;
}

/* Submit button - add red border/glow */
button[type="submit"],
[class*="send"] button,
[aria-label*="send" i],
[data-testid*="send"],
form button:last-of-type {
  border: 2px solid #B52D2D !important;
  border-radius: 8px !important;
  box-shadow: 0 0 8px rgba(181, 45, 45, 0.4) !important;
  transition: all 0.2s ease !important;
}

button[type="submit"]:hover,
[class*="send"] button:hover,
[aria-label*="send" i]:hover {
  border-color: #D45454 !important;
  box-shadow: 0 0 12px rgba(181, 45, 45, 0.6) !important;
}

/* Keep the icon red */
button[type="submit"] svg,
[class*="send"] button svg,
form button svg {
  color: #B52D2D !important;
  fill: #B52D2D !important;
}
