#chatbot-container {
    position  : fixed;
    bottom: 90px;
    right: 20px;
      width: 320px;
      height: 480px;
      border: 1px solid #ccc;
      background: white;
      box-shadow: 0 0 12px rgba(0,0,0,0.2);
      display: none;
      flex-direction: column;
      z-index: 999;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease;    
    }

    #chatbox {
      flex: 1;
      padding: 10px;
      overflow-y: auto;
      background: #f9f9f9;
    }

    #chatbot-header {
      background: #007bff;
      color: white;
      padding: 10px;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    #close-btn {
      background: transparent;
      border: none;
      color: white;
      font-size: 20px;
      cursor: pointer;
    }

    #suggestions {
      padding: 10px;
      border-top: 1px solid #ccc;
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      justify-content: center;
      background: #fff;
    }

    .suggestion-btn {
      padding: 6px 10px;
      background: #eee;
      border: none;
      border-radius: 15px;
      cursor: pointer;
      font-size: 13px;
    }

    #chatbot-input {
      display: flex;
      border-top: 1px solid #ccc;
      background: #fff;
    }

    #userInput {
      flex: 1;
      padding: 8px;
      border: none;
    }

    #sendBtn {
      padding: 8px 12px;
      border: none;
      background: #007bff;
      color: white;
      cursor: pointer;
    }

    .bot, .user {
      margin: 5px 0;
      padding: 6px 10px;
      border-radius: 10px;
      max-width: 85%;
    }

    .user {
      background: #dcf8c6;
      align-self: flex-end;
      text-align: right;
    }

    .bot {
      background: #e2e2e2;
      align-self: flex-start;
    }

    .typing {
      font-style: italic;
      color: gray;
    }

    #chat-icon {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #1d1d1e;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      color: white;
      font-size: 30px;
      text-align: center;
      line-height: 60px;
      cursor: pointer;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      z-index: 1000;
    }

.iconobot{
    width: 60px;
    height: 60px;

}
