/* [project]/src/styles/modal.css [app-client] (css) */
.justify-center {
  justify-content: center;
  display: flex;
}

.align-center {
  align-items: center;
  display: flex;
}

.w-full {
  width: 100%;
}

.align-left {
  align-items: left;
  display: flex;
}

.modal {
  border-radius: 20px;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 30px;
  display: flex;
  background-color: #001e86 !important;
}

.ctaButton {
  transition: transform .3s ease-in-out;
}

.ctaButton:hover {
  transform: scale(1.05);
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mtb-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mtb-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mtb-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

h4 {
  margin-bottom: 0 !important;
}

.text-left {
  text-align: left !important;
}

.modalTitle {
  background: linear-gradient(135deg, #f9d423 0%, #ffcf40 20%, #e6b422 40%, #f3a302 60%, #f3b50a 80%, #f5b904 100%);
  color: #0000;
  text-shadow: 0 2px 4px #a67c004d;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.modalTitle:after {
  content: "";
  background: linear-gradient(90deg, #0000 0%, #ffffff4d 50%, #0000 100%) 0 0 / 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 3s infinite shimmer;
  position: absolute;
  inset: 0;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

ul {
  margin: 0 20px;
}

.max-w {
  max-width: 750px !important;
}

.mx-auto {
  margin: 0 auto !important;
}

.relative {
  position: relative;
}

.feedback-table {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.feedback-table table {
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 2px 8px #0000001a;
}

.feedback-table th {
  text-align: left;
  background-color: #11055c;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 15px;
  font-weight: bold;
}

.feedback-table td {
  vertical-align: top;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 15px;
}

.feedback-table tr:last-child td {
  border-bottom: none;
}

.feedback-table tr:hover {
  background-color: #11055c;
}

@media (max-width: 600px) {
  .feedback-table th, .feedback-table td {
    padding: 8px 10px;
    font-size: 14px;
  }
}

.pagination-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.pagination-controls {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.pagination-controls a {
  text-decoration: none;
}

.pagination-button {
  color: #fff;
  cursor: pointer;
  background-color: #0070f3;
  border: none;
  border-radius: 4px;
  padding: .5rem 1rem;
  transition: transform .3s ease-in-out;
}

.pagination-button:hover {
  transform: scale(1.05);
}

.page-indicator {
  color: #afafaf;
  font-size: .9rem;
}

.toc-container .toc-list .ml-0 {
  margin-left: 0 !important;
}

.toc-container .toc-list .ml-2 {
  margin-left: 20px !important;
}

.toc-container .toc-list .ml-4 {
  margin-left: 40px !important;
}

/*# sourceMappingURL=src_styles_modal_19la1z5.css.map*/