@font-face {
  font-family: "Noto Sans Regular";
  src: url("../assets/fonts/NotoSans-VariableFont_wdth,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Italic";
  src: url("../assets/fonts/NotoSans-Italic-VariableFont_wdth,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}



/* Chat Icon Button */
#chat-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100vw;
}

#chat-toggle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Das Chatfenster */
#chat-widget {
  position: fixed;
  bottom: 80px;
  left: 20px;
  width: 300px;
  max-height: 400px;
  background: white;
  border: 1px solid #D2A857;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  box-sizing: border-box;
  max-width: 100vw;
  overflow: hidden;
}

/* Kopfbereich des Chatfensters */
#chat-header {
  font-family: "Noto Sans Regular";
  background: #192440;
  color: white;
  padding: 10px;
  border-radius: 8px 8px 0 0;
  font-weight: 500;
}

/* Nachrichtenbereich */
#chat-box {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: 14px;
  background: #f9f9f9;
}

/* Formularbereich */
#chat-form {
  display: flex;
  border-top: 1px solid #ddd;
}

#chat-form input {
  font-family: "Noto Sans Regular";
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 0 0 0 8px;
  font-size: 14px;
  outline: none;
}

#chat-form button {
  padding: 8px 12px;
  background: #192440;
  color: white;
  border: none;
  border-radius: 0 0 8px 0;
  cursor: pointer;
}

.hidden {
  display: none !important;
}
