.floating-help-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.help-button {
  display: flex;
  align-items: center;
  background-color: #e64626;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 20px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.help-button:hover {
  background-color: #363636;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.help-button img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .floating-help-button {
    bottom: 24px;
    right: 24px;
  }

  .help-button {
    border-radius: 50%;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }

  .help-button img {
    margin-right: 0;
    width: 24px;
    height: 24px;
  }

  .help-text {
    display: none;
  }
}

body.cogniti-page,
html.cogniti-page {
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.modal-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-fullscreen.show {
  opacity: 1;
  visibility: visible;
}

.modal-content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-fullscreen.show .modal-content-wrapper {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #e64626;
  color: #fff;
}

.modal-title {
  font-weight: 600;
  margin: 0;
}

.close-button {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  border-radius: 50%; 
}

.close-button img {
  width: 1.75rem;
  height: 1.75rem;
}
  

.close-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.chat-iframe {
  width: 100%;
  height: 100%;
  border: none;
}