/* (1) Hide the "Powered by listmonk" footer text */
footer.container {
  display: none !important;
}

/* (2) Limit the logo image to max 100px width/height while keeping aspect ratio */
.logo img {
  max-width: 100px !important;
  max-height: 100px !important;
  height: auto !important;
  width: auto !important;
  display: block;
}

/* Optional: Make the header/logo area look nicer/cleaner */
.header .logo {
  display: flex;
  align-items: center;
  gap: 12px;          /* space between image and text */
  justify-content: center;
  margin-bottom: 20px;
}

/* Optional: Center the whole header if needed */
.header {
  text-align: center;
}