/* Full-screen modal background */
.chatbot_vp_modal_background {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  /* Modal container */
}
.chatbot_vp_modal_background .chatbot_vp_modal_wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 90%;
  max-width: 500px;
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  /* Modal header */
}
.chatbot_vp_modal_background .chatbot_vp_modal_wrapper .chatbot_vp_modal_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #0073e6;
  padding-bottom: 10px;
  width: 100%;
  /* Exit button */
}
.chatbot_vp_modal_background .chatbot_vp_modal_wrapper .chatbot_vp_modal_header #chatbot_vp_exit_modal {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
}
.chatbot_vp_modal_background .chatbot_vp_modal_wrapper .chatbot_vp_modal_header #chatbot_vp_exit_modal svg {
  width: 24px;
  height: 24px;
  stroke: #333;
  transition: stroke 0.3s ease;
}
.chatbot_vp_modal_background .chatbot_vp_modal_wrapper .chatbot_vp_modal_header #chatbot_vp_exit_modal svg:hover svg {
  stroke: #0073e6;
}
.chatbot_vp_modal_background .chatbot_vp_modal_wrapper {
  /* Modal content */
}
.chatbot_vp_modal_background .chatbot_vp_modal_wrapper .chatbot_vp_modal_content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
  /* File input styling */
}
.chatbot_vp_modal_background .chatbot_vp_modal_wrapper .chatbot_vp_modal_content #chatbot_vp_file_input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
}
.chatbot_vp_modal_background .chatbot_vp_modal_wrapper .chatbot_vp_modal_content {
  /* Confirm upload button */
}
.chatbot_vp_modal_background .chatbot_vp_modal_wrapper .chatbot_vp_modal_content #chatbot_vp_upload_confirm {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #0073e6;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.chatbot_vp_modal_background .chatbot_vp_modal_wrapper .chatbot_vp_modal_content #chatbot_vp_upload_confirm:hover {
  background-color: #005bb5;
}/*# sourceMappingURL=modal.css.map */