* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
body {
  background: #e5ddd5;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.wrap {
  background: #fff;
  width: 400px;
  max-width: 90%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 600px;
}
.header {
  display: flex;
  align-items: center;
  background: #075e54;
  color: #fff;
  padding: 10px;
  width: 400px;
}
.avatar {
  background: #128C7E;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 10px;
}
.hmeta .title {
  font-size: 16px;
  font-weight: 600;
}
.hmeta .sub {
  font-size: 12px;
  opacity: 0.8;
}
.msgs {
  flex: 1;
  background: #ece5dd;
  padding: 12px;
  overflow-y: auto;
}
.bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  margin: 6px 0;
  line-height: 1.4;
  animation: fadeIn .4s ease;
}
.bubble.bot {
  background: #fff;
  align-self: flex-start;
}
.bubble.user {
  background: #dcf8c6;
  align-self: flex-end;
  margin-left: auto;
}
.actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-top: 1px solid #ddd;
  background: #f9f9f9;
}
.select {
  font-size: 13px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
}
.note {
  font-size: 12px;
  padding: 4px 10px 10px;
  color: #777;
  text-align: center;
}
.btn {
  background: #128C7E;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 13px;
  transition: background .2s;
}
.btn:hover { background: #0b6c63; }
.btn.ghost {
  background: transparent;
  border: 1px solid #fff;
}
.btn.small {
  font-size: 12px;
  padding: 4px 10px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.chip {
  background: #128C7E;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 13px;
}
.chip:hover { background: #0b6c63; }

.panel {
  position: fixed;
  right: -300px;
  top: 0;
  height: 100%;
  width: 280px;
  background: #fff;
  box-shadow: -4px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.panel.open { right: 0; }
.panel h4 {
  margin: 0 0 10px;
  font-size: 16px;
}
.panel .list {
  flex: 1;
  overflow-y: auto;
}
.panel .list button {
  display: block;
  width: 100%;
  margin-bottom: 6px;
  text-align: left;
  background: #f1f1f1;
  border: none;
  border-radius: 8px;
  padding: 8px;
  font-size: 13px;
  cursor: pointer;
}
.panel-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(5px);}
  to {opacity: 1; transform: translateY(0);}
}
.review-button-container {
    text-align: center; /* Center the button within the container */
    margin: 20px 0; /* Add space above and below the button */
}

.review-button {
    display: inline-flex; /* Align icon and text horizontally */
    align-items: center; /* Vertically center the icon and text */
    padding: 10px 20px; /* Add padding for better clickability */
    font-size: 16px; /* Increase font size for readability */
    color: #ffffff; /* Text color */
    background-color: #0b6c63; /* Background color */
    text-decoration: none; /* Remove underline from the link */
    border-radius: 30px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.review-button:hover {
    background-color: #095a52; /* Darker shade on hover */
}

.review-button:active {
    transform: scale(0.98); /* Slightly shrink the button on click */
}

.help-icon {
    width: 20px; /* Set width of the icon */
    height: 20px; /* Set height of the icon */
    margin-right: 10px; /* Space between icon and text */
}

