/* EMF Ops Agent — Brand Stylesheet
 * Primary Blue: #0180FF | Dark Gray: #3F4347
 */

/* ── Primary button color ──────────────────────────── */
.MuiButton-containedPrimary,
button[type="submit"] {
  background-color: #0180FF !important;
  background-image: none !important;
}
.MuiButton-containedPrimary:hover,
button[type="submit"]:hover {
  background-color: #006cd9 !important;
}

/* ── Action buttons ────────────────────────────────── */
.MuiButton-outlined {
  border-color: #0180FF !important;
  color: #0180FF !important;
}
.MuiButton-outlined:hover {
  background-color: rgba(1, 128, 255, 0.1) !important;
}

/* ── Links ──────────────────────────────────────────── */
a, .MuiLink-root {
  color: #0180FF !important;
}

/* ── Remove focus ring from chat input ──────────────── */
textarea, textarea:focus, textarea:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* ── Bold text color ────────────────────────────────── */
.message-content strong {
  color: #8BDEFF;
}

/* ── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0f0f13; }
::-webkit-scrollbar-thumb { background: #3F4347; border-radius: 3px; }

/* ── Push input box up from footer ──────────────────── */

/* ── Login page logo size ──────────────────────────── */
[class*="login"] img, form img {
  max-width: 400px !important;
}
