/* WhatsApp */

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
  }
  
  .whatsapp-button {
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .whatsapp-button img {
    width: 35px;
    height: 35px;
  }
  
  .whatsapp-chat {
    width: 300px;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    bottom: 70px;
    right: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
  }
  
  .chat-header {
    background-color: #0d6985;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .chat-body {
    padding: 10px;
    max-height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .bot-message,
  .user-message {
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
    font-size: 0.9rem;
  }
  
  .bot-message {
    background-color: #f1f0f0;
    align-self: flex-start;
  }
  
  .user-message {
    background-color: #dcf8c6;
    align-self: flex-end;
  }
  
  .chat-footer {
    display: flex;
    gap: 5px;
    padding: 10px;
    border-top: 1px solid #eee;
  }
  
  .chat-footer input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
  }
  
  .chat-footer button {
    background-color: #25d366;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
  }
  
  #search-box {
    padding: 12px;
    font-size: 1rem;
    border: 2px solid #0d6985;
    border-radius: 25px;
    width: 300px;
    outline: none;
    transition: all 0.3s ease-in-out;
    text-indent: 10px;
  }
  
  #search-box:focus {
    border-color: #ff9800;
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.5);
  }