/* Regenerated Custom CSS override for AppId 2952697274802274 */
/* Apply #1a1a1a as dark-but-not-pure-black primary color and map to standard variables */

.theme-color {
  --custom-primary-dark: #1a1a1a;

  /* Map standard primary color variables to custom primary dark */
  --global-primary-primary-500: var(--custom-primary-dark);
  --global-primary-primary-600: #2e2e2e; /* slightly lighter for hover effect */
  --global-primary-primary-700: #454545;
  --global-primary-primary-800: #5a5a5a;
  --global-primary-primary-900: #6e6e6e;
}

/* Primary Buttons */
button.btn-primary,
button.comp-button-primary-normal,
button.comp-button-primary-hover,
button.comp-button-primary-disable {
  background-color: var(--global-primary-primary-500) !important;
  border-color: var(--global-primary-primary-500) !important;
  color: #fff !important;
}

/* Primary Buttons on hover/focus */
button.btn-primary:hover,
button.comp-button-primary-normal:hover,
button.comp-button-primary-hover:hover {
  background-color: var(--global-primary-primary-600) !important;
  border-color: var(--global-primary-primary-600) !important;
  color: #fff !important;
}

/* Headers (h1 - h6) */
h1, h2, h3, h4, h5, h6 {
  color: var(--custom-primary-dark);
}

/* Main text elements */
body, p, span, a {
  color: var(--custom-primary-dark);
  transition: color 0.3s ease;
}

/* Navigation menu header background/text */
.comp-navigation-menu-header {
  background-color: var(--custom-primary-dark);
  color: #fff;
}

/* Input focus borders */
input:focus,
textarea:focus,
select:focus {
  border-color: var(--custom-primary-dark);
  outline-color: var(--custom-primary-dark);
  box-shadow: 0 0 4px var(--custom-primary-dark);
}

/* Links normal and hover */
a {
  color: var(--custom-primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--global-primary-primary-600);
  text-decoration: underline;
}

/* Utility classes */
.text-primary-dark {
  color: var(--custom-primary-dark) !important;
}

.bg-primary-dark {
  background-color: var(--custom-primary-dark) !important;
  color: #fff !important;
}