html, body {
    height: 100%;
    margin: 0;
  }
  
  h1 {
    color: #fff;
    font-family: Segoe UI;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0 20px;
  }
  
  #banner {
    align-items: center;
    background-color: #c61e12;
    display: flex;
    height: 50px;
  }
  
  #custom-questions {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    background: #f4f4f4;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    padding: 10px;
    z-index: 1000;
  }

  .webchat__modal-dialog__box {
    margin-top: 34px !important;
  }
  
  #webchat {
    top: 100px;
    height: calc(100% - 100px);
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
  
  .webchat__bubble a {
    color: #c61e12 !important;
  }
  
  .suggested-action_buttons {
    align-items: center;
    background-color: white;
    border: 2px solid #000;
    border-radius: 0;
    color: #000;
    font-family: Calibri, "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    height: 41px;
    justify-content: center;
    padding: 8px;
    cursor: pointer;
    margin-right: 20px;
  }

  /* Oikealle reunoille vain Aloita alusta -nappi */
  #refresh-btn {
    order: 99;
    margin-left: auto;
  }

  /* Endpoint-napit ja aktiivisen korostus */
  .endpoint-button.active {
    font-weight: 700;
    background: linear-gradient(180deg, #f7f9ff 0%, #eef3ff 100%);
    box-shadow: inset 2px 2px 0 rgba(0,0,0,0.06), inset -2px -2px 0 rgba(255,255,255,0.6);
    transform: translateY(1px);
  }

  /* Pienet vuorovaikutusanimaatiot */
  .endpoint-button,
  #refresh-btn {
    transition: transform .05s ease, box-shadow .1s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
  }
  .endpoint-button:active,
  #refresh-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
  }
  @media only screen and (max-width: 768px) {
  .page-title {
    display: none !important;
  }
}

