.pbutf {
    background-color: #fff;
    color: #8A63C9;
    border: 2px solid #8A63C9;
    text-align: center;
    vertical-align: middle;
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: center;
}


.line-title {
    display: flex;
    align-items: center;
    text-align: center;
    color: #666; /* Matching the gray color in your image */
    font-family: sans-serif;
    direction: rtl; /* Sets text direction to Right-to-Left for Hebrew */
    margin: 10px 0px 10px 0px;
}

    .line-title::before,
    .line-title::after {
        content: "";
        flex: 1; /* Makes the lines take up all available side space */
        border-bottom: 1px solid #ddd; /* The line thickness and color */
        margin: 0 15px; /* Space between the text and the lines */
    }
.willie-main {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 !important;
}

.willie-main::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../images/new/green-cloud.svg") no-repeat top right;
  background-size: auto;
  z-index: -1;
}

.willie-main::after {
  content: "";
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/new/purple-cloud.svg") no-repeat top left;
  background-size: auto;
  z-index: -1;
}

.willie-top-bar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  border-bottom: 1px solid #e5e5e5;
  background-color: rgba(255, 255, 255, 0.5);
}

.willie-top-bar__title {
  font-size: 18px;
  font-weight: 700;
  color: #464f62;
}

.willie-top-bar__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* Chat Area */
.willie-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 150px 24px 40px;
}

.willie-chat__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.willie-mascot {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.35px solid #e5e5e5;
  border-radius: 19px;
  background-color: #eafff6;
  padding: 10px;
  margin-bottom: 10px;
}

.willie-mascot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.willie-chat__instruction {
  font-size: 18px;
  line-height: 24px;
  color: #0a0a0a;
  text-align: center;
}

/* Input Area */
.willie-input-area {
  padding: 24px;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  position:fixed;
  bottom:60px;
  width:100%;
}

.willie-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px;
}

.willie-input-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.willie-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #454f63;
  background: transparent;
  text-align: right;
}

.willie-input::placeholder {
  color: #a1a6b0;
}

.willie-buttons-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.willie-send-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #8a63c9;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.willie-send-btn:disabled {
  opacity: 0.5;
}

.willie-camera-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e5e5e5;
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
}

/* Materials Info Card */
.materials-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background-color: rgba(138, 99, 201, 0.1);
  overflow: hidden;
  margin: 0px 0 10px;
}

.materials-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  position: relative;
}

.materials-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #454f63;
  text-align: center;
  margin: 0;
}

.materials-card__content {
  padding: 0 12px 16px;
}

.materials-grid {
  display: flex;
  gap: 16px;
}

.material-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.material-item__img-wrapper {
  height: 7dvh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 2px 5px;
}

.material-item__img {
  width: 100%;
  height: 5dvh;
  object-fit: contain;
}

.material-item__info {
  position: absolute;
  top: -5px;
  left: -2.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.material-item__label {
  font-size: 16px;
  line-height: 19px;
  color: #454f63;
  text-align: center;
}

.materials-bottom-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 15px;
}

.materials-bottom-title span {
  font-size: 15px;
  font-weight: 600;
  color: #737373;
}

.willie-chat-wrapper {
    flex: 1;
    padding: 12px 24px 40px;
    min-height: 100dvh;
    padding-bottom: 210px;
}
.supto {
    padding-top: 85px;
}

.willie-mascot--small {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  padding: 8px;
  margin-bottom: 12px;
}

.cup-img {
  width: 170px;
  height: 170px;
  border: 1px solid #e5e5e5;
  border-radius: 26px;
  background-color: #f5f5f5;
  padding: 8px;
  margin-bottom: 12px;
}

.cup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 17px;
}

.question-block {
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 14px 24px;
  margin-bottom: 12px;
}

.question-block p {
  font-size: 18px;
  color: #0a0a0a;
}
