/* Hide the default Mastodon SVG logo text/symbol */
.column-link--logo svg {
  display: none !important;
}

/* Hide the Mastodon logo icon in the Home navigation link */
.column-link[href="/deck/home"] .column-link__icon,
.column-link[href="/home"] .column-link__icon,
.column-link__icon .fa-home {
  display: none !important;
}

/* If the icon is an SVG directly inside the link, hide it and fix padding */
.column-link[href="/deck/home"] svg,
.column-link[href="/home"] svg {
  display: none !important;
}

/* Optional: Shift the text slightly to the left to occupy the empty space */
.column-link[href="/deck/home"],
.column-link[href="/home"] {
  padding-left: 12px !important;
}

/* Hide the large Mastodon logo in the admin header */
.admin-wrapper .sidebar-wrapper .logo,
.admin-wrapper .sidebar .logo,
div[class*="sidebar"] a[href="/admin/dashboard"] svg,
div[class*="sidebar"] a[href="/settings/profile"] svg {
  display: none !important;
}

/* Hide the main Mastodon logo on the landing and login pages */
.landing-page .hero-scene svg,
.landing-page .brand svg,
.landing-page .logo-container svg {
  display: none !important;
}

