/* Ohmoworld brand colors — overrides the template's default green/yellow theme
   to match the logo (logos/1.png dark teal, logos/2.png sky blue). */
:root {
    --wc-primary: #032f3e;
    --wc-primary-alt: #062631;
    --wc-primary-rgb: 3, 47, 62;
    --wc-brand: #5fa8d3;
    --wc-brand-alt: #3792c8;
}

/* Breadcrumb on the dark page-title banner: make the current-page label and
   the "/" divider fully white instead of the theme's default pale off-white. */
.page-title-section .breadcrumb .breadcrumb-item.active {
    color: #fff;
}
.page-title-section .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* The niceSelect plugin replaces every <select> with a widget that defaults
   to width:auto (sized to its currently selected option's text), instead of
   filling its container like the other form fields. Make it match. */
.nice-select {
    width: 100%;
}

