/*!******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/styles/modal.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************/
.justify-center {
  display: flex;
  justify-content: center;
}

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

.w-full {
  width: 100%;
}
.align-left {
  display: flex;
  align-items: left;
}

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

.ctaButton {
  transition: transform 0.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 {
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #f9d423 0%,
    #ffcf40 20%,
    #e6b422 40%,
    #f3a302 60%,
    #f3b50a 80%,
    #f5b904 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 4px rgba(166, 124, 0, 0.3);
  position: relative;
  display: inline-block;
}

/* Optional: Add shimmer animation for extra luxury effect */
.modalTitle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
  -webkit-background-clip: text;
  background-clip: text;
}

@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;
}

/* table */

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

.feedback-table table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

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

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

.page-indicator {
  font-size: 0.9rem;
  color: #afafaf;
}
/* -pagination */


.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;
}
