.drag-drop {
    height: 200px;
    border: 1px dashed #495057;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #181c1f;
    transition: border-color 0.3s;
  }

  .drag-drop:hover {
    border-color: #007bff;
  }

  .drag-drop.drag-over {
    border-color: #28a745;
    background-color: #e9ffe9;
  }

  .drag-drop input[type="file"] {
    display: none;
  }

  .drag-drop label {
    font-size: 16px;
    color: #666;
    cursor: pointer;
  }

  .preview {
    margin-top: 15px;
    text-align: center;
  }

  .preview img {
    max-width: 100%;
    max-height: 150px;
    border-radius: 5px;
  }

  /* Chatbox Styling */
.chatbox {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 370px;
  background: #181c1f;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: none; /* Initially hidden */
  z-index: 100;
}

.chatbox-header {
  background: #007bff;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.chatbox-body {
  padding: 15px;
  max-height: 400px;
  overflow-y: auto;
}

/* Chatbox Toggle Button */
.chatbox-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
