/*
 * JobLik public header theme logo visibility hotfix — 0.30.96
 * Restores one-logo-at-a-time behavior overridden by v03078.
 * Public header only; admin layout remains untouched.
 */
.v064-header .joblik-theme-logo {
  background: transparent !important;
}

.v064-header .joblik-theme-logo > img.joblik-theme-logo-light {
  display: block !important;
  background: transparent !important;
}

.v064-header .joblik-theme-logo > img.joblik-theme-logo-dark {
  display: none !important;
  background: transparent !important;
}

html[data-theme="light"] .v064-header .joblik-theme-logo > img.joblik-theme-logo-light,
html:not([data-theme="dark"]) .v064-header .joblik-theme-logo > img.joblik-theme-logo-light {
  display: block !important;
}

html[data-theme="light"] .v064-header .joblik-theme-logo > img.joblik-theme-logo-dark,
html:not([data-theme="dark"]) .v064-header .joblik-theme-logo > img.joblik-theme-logo-dark {
  display: none !important;
}

html[data-theme="dark"] .v064-header .joblik-theme-logo > img.joblik-theme-logo-light {
  display: none !important;
}

html[data-theme="dark"] .v064-header .joblik-theme-logo > img.joblik-theme-logo-dark {
  display: block !important;
}
