@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

html * {
  font-family: "Poppins", "Poppins Fallback", Arial, sans-serif !important;
}

#layoutContainer {
  padding-top: 0rem;
  margin-top: -1rem;
}

#layoutContainer .AppContainer__homePage {
  margin-top: 0px !important;
}

[data-id="portal_name"] {
  display: none;
}

#headerContent {
  padding-bottom: 3rem;
}

@media (max-width: 768px) {
  #headerContent {
    padding-bottom: 2rem;
  }
  
  #headerContent .Header__searchTitle {
    font-size: 1.5rem;
    margin: 1rem 0;
  }
  
  [data-id="home_custom_description"] h2 {
    font-size: 1.25rem !important;
  }
  
  [data-id="home_custom_description"] p {
    margin-bottom: 1rem !important;
  }
}

.Button__footerBtn {
  position: relative;
  width: 280px;
  color: transparent; /* hides text but keeps layout */
}

.Button__footerBtn::after {
  content: "Contact Support";
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.Header__description {
  position: relative;
  color: transparent; /* hide original text */
  text-align: center; /* optional: centers inline text horizontally */
}

.Header__description::before {
  content: "Search our knowledge base."; /* new text */
  color: black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* perfectly center */
  text-align: center;
  width: 100%;
}

