/* konvo-overrides.css
   App-specific fixes layered on top of the kaiadmin theme.
   Loaded after kaiadmin.min.css on every page that uses the admin header. */

/* The "Dark" / "Dark2" Top Bar colors darken the profile and Quick Actions
   dropdown panels (kaiadmin.min.css forces a dark navy background on any
   .dropdown-menu under those two presets), but the profile name/email text
   and the Quick Actions item labels keep their default dark/blue colors,
   making them unreadable. Recolor them to stay legible against the dark
   dropdown background. */
.main-header .navbar-header[data-background-color="dark"] .dropdown-user-scroll .u-text h4,
.main-header .navbar-header[data-background-color="dark2"] .dropdown-user-scroll .u-text h4 {
  color: #fff;
}
.main-header .navbar-header[data-background-color="dark"] .dropdown-user-scroll .u-text .text-muted,
.main-header .navbar-header[data-background-color="dark2"] .dropdown-user-scroll .u-text .text-muted {
  color: #b9babf !important;
}
.main-header .navbar-header[data-background-color="dark"] .quick-actions .quick-actions-item,
.main-header .navbar-header[data-background-color="dark2"] .quick-actions .quick-actions-item {
  color: #fff;
}

/* Required-field indicator (paired with assets/js/required-field-mark.js).
   A subtle amber left border on every mandatory input/select/textarea -
   matches the accent already used on the registration page. */
.konvo-required-field {
  border-left: 3px solid #f0ad4e;
}
