@import url("https://fonts.googleapis.com/css2?family=Sunflower:wght@300;500;700&&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
#complaints-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
#complaints-modal .modal-content {
  background-color: #fff;
  width: 80%;
  max-width: 700px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#complaints-modal .modal-content .panel-title-container {
  flex-shrink: 0;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
#complaints-modal .modal-content .panel-title-container .panel-title .title-text {
  font-family: "Sunflower";
  font-weight: 700;
  color: #004b93;
  font-size: 30px;
  user-select: none;
}
#complaints-modal .modal-content .panel-title-container .panel-title .title-underline-container {
  height: 3px;
  padding: 0px 16px;
  box-sizing: border-box;
}
#complaints-modal .modal-content .panel-title-container .panel-title .title-underline-container .title-underline {
  background-color: #fe0000;
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
#complaints-modal .modal-content p {
  font-family: "DM Sans", sans-serif;
  font-weight: normal;
  color: rgba(37, 37, 37, 0.6);
  font-size: 14px;
}
#complaints-modal .modal-content p a {
  color: #004b93;
}
#complaints-modal .modal-content .modal-actions {
  flex-shrink: 0;
  text-align: right;
  background: white;
  display: flex;
  justify-content: end;
  gap: 10px;
}
#complaints-modal .modal-content .modal-actions .panel-button {
  display: flex;
  padding: 10px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #004b93;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  border: 0;
  transition: 0.2s;
  width: fit-content;
}
#complaints-modal .modal-content .modal-actions .panel-button:hover {
  transform: scale(1.05);
  background-color: #00396e;
}
#complaints-modal {
  /* When the modal appears (enlarging effect) */
}
#complaints-modal .modal-appear {
  opacity: 1;
  transform: scale(1);
}
#complaints-modal {
  /* When the modal disappears (shrinking effect) */
}
#complaints-modal .modal-disappear {
  opacity: 0;
  transform: scale(0.8);
}

/* Modal header and content */
.panel-title {
  font-size: 24px;
  font-weight: bold;
}

.panel-underline-container {
  margin-top: 10px;
}

.title-underline {
  width: 50px;
  height: 2px;
  background-color: #007bff;
}

.abc-gl-content {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}

/* Modal actions (buttons) */
.modal-actions {
  margin-top: 20px;
  text-align: center;
}

.cancel-btn {
  background-color: #ff4d4d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cancel-btn:hover {
  background-color: #ff3333;
}/*# sourceMappingURL=complaints-modal.css.map */