.sidebar {
       opacity: 0.8;
}
   
.sidebar:hover {
       opacity: 1.0;
}
   
.sidebar-logo {
      padding: 1.5rem;
}
  
.sidebar-logo img {
      border-radius: 50%;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      width: 160px;
      margin: 0 auto;
}

body:has(.banner:not([style*="display: none"])) .sidebar-toggle {
  margin-top: 3rem;
}

.banner {
  background-color: #f9e1e4;
  color: #000000;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: .5rem 1rem;
  gap: 1rem;
}

.banner .bold {
  font-weight: bold;
}

.banner-content {
  flex: 1;
  text-align: center;
}

.banner-button {
  background-color: #d72d47;
  color: white;
  padding: .5rem .75rem;
  text-decoration: none;
  border-radius: .25rem;
  white-space: nowrap;
  box-shadow: 0 .2rem .5rem rgba(0, 0, 0, .1);
}

.banner-close {
  background: none;
  border: none;
  color: #000000;
  font-size: 1.2rem;
  cursor: pointer;
  padding: .25rem;
  flex-shrink: 0;
}

.banner-button:hover{
  background-color: #bb2239;
}

@media (max-width: 768px) {
  .banner {
    padding: .5rem;
    gap: .5rem;
  }
}

@media (max-width: 480px) {
  .banner {
    position: relative;
  }
  
  .banner-close {
    position: absolute;
    right: .5rem;
  }
  
  .banner-content {
    margin-right: 2rem;
  }

  body:has(.banner:not([style*="display: none"])) .sidebar-toggle {
  margin-top: 5rem;
  }

  .banner-button {
    display: block;
    margin: 0 auto;
    max-width: 12.5rem;
  }
}

@media (max-width: 375px) {
  body:has(.banner:not([style*="display: none"])) .sidebar-toggle {
    margin-top: 6.5rem;
    }
}