/* Adjust logo size and fit in the top menu bar & login screen */
#nav .logo img,
.login #logo img,
header .logo img {
  max-height: 48px !important;    /* Adjust height to fit header nicely */
  width: auto !important;         /* Maintain original aspect ratio */
  object-fit: contain !important; /* Prevent distortion */
  margin: auto 0 !important;      /* Vertical alignment */
}

/* Adjust login screen logo alignment */
.login #logo {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-bottom: 1rem !important;
}
