  #telodp {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.288);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .menu-box {
    color: whitesmoke;
    background: #1b1b1b;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.15);
  }

  .menu-box h2 {
    color: #ff0000;
    margin-bottom: 10px;
  }

  .menu-box p {
    margin-bottom: 25px;
    color: #ddd;
  }

  input, select {
    width: 100%;
    padding: 10px 12px;
    margin: 8px 0;
    border: none;
    border-radius: 8px;
    background: #2a2a2a;
    color: white;
    font-size: 15px;
  }

  .close-btn {
    background: none;
    color: #aaa;
    font-size: 28px;
    position: absolute;
    top: 20px;
    right: 30px;
    border: none;
    cursor: pointer;
  }

  .close-btn:hover {
    color: #ff0000;
  }
#chatBox {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 340px;
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 950;
  }

  #chatHeader {
    background: #b80b0b;
    color: black;
    font-weight: 600;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #chatMessages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    max-height: 300px;
  }

  .msg {
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    max-width: 85%;
    word-wrap: break-word;
  }

  .user {
    background: #b80b0b;
    color: black;
    align-self: flex-end;
    margin-left: auto;
  }

  .ai {
    background: #2a2a2a;
    color: #ddd;
    align-self: flex-start;
    margin-right: auto;
  }

#chatInputArea {
  display: flex;
  gap: 6px;
  padding: 10px;
  background: #111;
  align-items: center;
}

  #chatInput {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    border: none;
    background: #2a2a2a;
    color: white;
  }
#sendMsg{
  max-width: 34px;
  max-height: 34px;
  padding: 8px;
  border-radius: 8px;
  background: #2a2a2a;
  color: white;
  border: none;
}

  #chatButton {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #b80b0b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 26px;
    z-index: 940;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  }

  #chatButton:hover {
    background-color: #cd3434;
  }

  .fade-in {
    animation: fadeIn 0.4s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }