.chatgpt-body #chatgpt-response {
  margin-bottom: 30px;
  border: 1px solid #cdcfd5;
  padding: 20px;
  border-radius: 6px;
  min-height: 200px;
}

#prompt {
  margin-bottom: 20px;
}

.gift-recommendation-text-counter {
  font-weight: 500;
  font-size: 14px;
  text-align: right;
  margin-top: 10px;
  display: block;
}

.gift-recommendation-creativity {
  width: 100%;
}

.gift-recommendations-title {
  text-transform: uppercase;
  text-align: center;
}

.gift-recommendations {
  display: flex;
  flex-wrap: wrap;
  width: 102%;
  position: relative;
  left: -1%;
  margin-bottom: 60px;
}

#gift-recommendation-form > label {
  font-weight: 700;
}

#gift-recommendation-form {
  margin-bottom: 50px;
}

#gift-recommendation-form #temperature {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

#gift-recommendation-form label[for="temperature"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gift-recommendations .gift-item {
  padding: 10px;
  width: 25%;
}

.gift-recommendations .gift-item .gift-item-inner {
  border: 2px solid #ea358b;
  border-radius: 20px;
  padding: 25px 10px 15px 10px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.gift-recommendations .gift-title {
  margin-bottom: 10px;
  white-space: break-spaces;
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.gift-recommendations .gift-image {
  margin-bottom: 15px;
}

.gift-recommendations .gift-image img {
  height: 230px;
  object-fit: contain;
}

input#submit-btn {
  border-radius: 5px;
}

/* LDS loader */
.loader {
  display: none;
  width: 100%;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  height: 260px;
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader__inner span {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.03em;
  color: #ea358b;
  margin-top: 20px;
}

.loader__inner span+ span {
  margin-top: 0;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ea358b;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* End LDS loader */

/* Error message styles */
.error-message {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
  padding: 15px;
  margin: 10px;
  width: calc(100% - 20px);
  font-weight: 500;
}

.gift-recommendation-text-counter.danger {
  color: #dc3545;
}

@media(max-width: 1024px) {
  .gift-recommendations .gift-item {
    width: 33.33%;
  }
}

@media(max-width: 767px) {
  .gift-recommendations .gift-item {
    width: 50%;
  }
}

@media(max-width: 475px) {
  .gift-recommendations .gift-item {
    width: 100%;
  }
}
