body { 
  font-family: 'Ubuntu', sans-serif; 
  background: #f5f5f5; 
  margin: 0; 
  padding: 0; 
}

.page-content {
  padding: 20px;
}

.chat-bubble-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff5100;
	font-stretch: bold;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  width: 60px;
  height: 60px;
  line-height: 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
	font-weight: bold;
}

.chat-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  display: none; 
  justify-content: center;
  align-items: center;
}

.chat-container {
  background: #fff;
  border-radius: 5px;
  max-width: 400px;
  width: 90%;
  height: 70%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ff5100;
  color: #fff;
  padding: 10px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.close-button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.message {
  margin: 10px 0;
  max-width: 80%;
  line-height: 1.4;
  padding: 10px;
  border-radius: 5px;
  word-wrap: break-word;
}

.message.system {
  background: #eee;
  align-self: flex-start;
}

.message.user {
  background: #cce5ff;
  align-self: flex-end;
}

.chat-input {
  border-top: 1px solid #ddd;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Stil for alternativ-boblene */
.option-bubble {
  background: #468AD8;
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  display: inline-block;
  margin: 5px 5px 5px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.option-bubble.selected {
  background: #ff5100; /* Oransje når valgt */
}

.options-container {
  background: #f8f8f8;
  border-radius: 5px;
  padding: 10px;
  margin-top: 5px;
}

.confirm-button {
  background: #3CA374;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.confirm-button:hover {
  background: #218838;
}
