﻿/*Site logo*/
.site-body-left-column-site-logo img {
  max-width: 200px;
  height: auto;
  display: flex;
  margin-bottom: 24px;
  border-radius: 0px;
}

.site-header-logo img {
  width: 150px;
  margin-top: 7px;
  border-radius:0px;
}

/*Hide sitename for desktop*/
.site-body-left-column-site-name {
  display: none;
  padding: 0px;
}

/*Hide sitename for mobile*/
.site-header-text {
  display: none;
}

/*Hide powered by*/
.site-footer {
  display: none;
}

/*Change logo color when swithing between dark and light mode*/
.theme-dark .site-header-logo, .theme-dark .site-body-left-column-site-logo {
    filter: invert(1) hue-rotate(180deg);
}


