.border-head {
    border: 2px solid #d1258f;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffecf8;
  }
  
  .border-row {
    background: linear-gradient(90deg, #8D378D 0%, #D91286 100%);
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; 
    /* justify-content: center; */
    padding: 30px;
  }
  
  
  .border-box {
    display: flex;
    align-items: center;
    background-color: #ffa9de;
    color: #fff;
    border-radius: 26px;
    padding: 0.5rem 1rem;
    min-width: 220px;
    height: 45px;
    gap: 0.5rem;
    white-space: nowrap;
  }
  
  .border-box img.icon-box {
    width: 24px;
    height: 24px;
  }
 
  .chat-box {
    height: 400px;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .rightChat-box,
  .leftChat-box {
    display: flex;
    align-items: center;
    border-radius: 26px;
    padding: 0.5rem 1rem;
    max-width: 85%;
    word-break: break-word;
  }
  
  .rightChat-box {
    background-color: #d1258f;
    color: #fff;
    margin-left: auto;
    justify-content: flex-end;
    text-align: right;
  }
  
  .leftChat-box {
    background-color: #fdd9ef;
    color: #000;
    margin-right: auto;
    justify-content: flex-start;
    text-align: left;
  }
  
  .chat-avatar {
    width: 30px;
    height: 30px;
    margin-left: 10px;
    margin-right: 10px;
    align-self: flex-start; /* 👈 This makes the avatar stay at the top */
  }
  .powerby {
    width: 100px;
    margin-left: 2px;
    object-fit: contain;
  }
  .loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}
.loader-overlay {
  top: 0 !important;
  left: 0 !important;
}
/* .alert-warning{
   position: absolute;
    left: 200px;
    z-index: 105;
    max-width: 400px;
    bottom: 25px;
} */
.pop-button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 20px;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.alert{
  position: absolute !important;
  /* bottom: 20px; */
  left: 291px;
}
/* .container {
  background: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 10rem;
} */