/*body {
  background-color: #f5f5f5; /* page background color
}
*/

.wrapper {
  display: flex !important;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  width: 80% !important;
}

/* Desktop layout - sidebar */
@media screen and (min-width: 769px) {
  .wrapper > header {
    background-color: #e3f2fd;
    position: fixed !important;
    top: 0 !important;
    left: 7.5% !important;
    width: 15% !important;
    height: 100vh !important;
    overflow-y: auto !important;
    padding-top: 2%;
  }
  
  .wrapper > section {
    flex: 1 1 80%;
    margin-left: 20%;
  }
}

/* Mobile layout - stack vertically */
@media screen and (max-width: 768px) {
  .wrapper {
    flex-direction: column !important;
    width: 90% !important;
    gap: 0;
  }
  
  .wrapper > header {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    background-color: #e3f2fd;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .wrapper > section {
    margin-left: 0 !important;
    width: 100%;
  }
}

.dhdelimiter hr {
  border-top: 2px solid #1f77b4;
}

.logos-background-full {
  width: 100%;
  background-color: rgba(0, 128, 0, 0.15);
  display: flex;
  justify-content: center;
  padding: 5px 0;
}

.logos-background {
  display: flex;
  gap: 10px;
  flex-wrap: wrap; /* Allow logos to wrap on mobile */
  justify-content: center;
}
