/* Logo display fixes */
.brand-logo img {
  filter: none !important;
  -webkit-filter: none !important;
  max-width: 100%;
  height: auto;
}

.header .brand-logo img {
  filter: none !important;
  -webkit-filter: none !important;
}

/* Profile page logo */
.profile-name img {
  filter: none !important;
  -webkit-filter: none !important;
  max-height: 38px;
  width: auto;
}

/* Profile dropdown avatar */
.profile_log img.rounded-full {
  filter: none !important;
  -webkit-filter: none !important;
  max-width: 40px;
  height: auto;
}

/* Auth pages logo fixes (login, forgot password, OTP) */
.authincation .mini-logo img {
  filter: none !important;
  -webkit-filter: none !important;
  max-width: 150px !important;
  height: auto !important;
  width: auto !important;
}

.welcome-content .mini-logo img {
  filter: none !important;
  -webkit-filter: none !important;
  max-width: 150px !important;
  height: auto !important;
}

/* Ensure logo displays properly on all screen sizes */
@media only screen and (max-width: 767px) {
  .header .brand-logo {
    display: block !important;
  }

  .header .brand-logo img {
    max-width: 200px;
    height: auto;
  }

  .authincation .mini-logo img {
    max-width: 120px !important;
  }
}
