:root {
  --tb-theme-primary: #526c76;
}

/* TextField focus label color (filled + outlined) */
.mdc-text-field:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label {
  color: var(--tb-theme-primary) !important;
}

/* TextField focus underline (filled/standard) */
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-line-ripple::after {
  border-bottom-color: var(--tb-theme-primary) !important;
}

/* TextField outlined focus border */
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing {
  border-color: var(--tb-theme-primary) !important;
}

/* Select focus label/icon/underline */
.mdc-select:not(.mdc-select--disabled).mdc-select--focused .mdc-floating-label {
  color: rgba(82, 108, 118, 0.87) !important;
}

.mdc-select:not(.mdc-select--disabled).mdc-select--focused .mdc-select__dropdown-icon {
  fill: var(--tb-theme-primary) !important;
}

.mdc-select--filled:not(.mdc-select--disabled) .mdc-line-ripple::after {
  border-bottom-color: var(--tb-theme-primary) !important;
}

.mdc-select--outlined:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline__leading,
.mdc-select--outlined:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline__notch,
.mdc-select--outlined:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline__trailing {
  border-color: var(--tb-theme-primary) !important;
}

/* Keep linear progress aligned with theme */
.mdc-linear-progress__bar-inner {
  border-color: var(--tb-theme-primary) !important;
}
