/* Passport Form Styles */
.review-form-container {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  /* padding: 20px; */
  background: white;
  border-radius: 8px;
  /* box-shadow: 0 3px 10px rgba(0,0,0,0.08); */
}

.review-data-section {
  margin-bottom: 25px;
  border: 1px solid #e0e6ed;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.review-data-section:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.review-data-section-header {
  background: #1C3764;
  color: white;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.review-data-section-content {
  padding: 20px;
}

.review-form-row {
  display: flex;
  padding: 12px 0px 12px 10px;
  border-bottom: 1px solid #f0f4f9;
}

.review-form-row:last-child {
  border-bottom: none;
}

.review-form-row:hover {
  background-color: var(--e-global-color-light);
}

.review-data-question {
  flex: 0 0 42%;
  font-weight: 600;
  padding-right: 20px;
  color: #2d3748;
  font-size: 15px;
}

.review-data-answer {
  border-left: 1px solid #b9b4bb;
  padding-left: 20px;
  flex: 1;
  color: #4a5568;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.review-data-answer font {
  color: #565353;
  font-size: 15px !important;
}

.review-data-answer a {
  color: #2c7da0;
  text-decoration: none;
  transition: color 0.2s;
}

.review-data-answer a:hover {
  color: #1a4f72;
  text-decoration: underline;
}

.review-data-answer ul {
  padding-left: 22px;
  margin-top: 8px;
}

.review-data-answer ul li {
  margin-bottom: 6px;
  position: relative;
}

.review-data-answer ul li:before {
  content: "•";
  color: #2c7da0;
  position: absolute;
  left: -15px;
  top: 0;
}

.review-order-container {
  margin-top: 25px;
  overflow-x: auto;
}

.order-details-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  min-width: 600px;
}

.order-details-table tr:nth-child(even) {
  background-color: #f8fafc;
}

.order-details-table tr:hover {
  background-color: #f1f7fd;
}
.order-details-table-header th,
tr.order-details-table-footer td:first-child {
  background: var(--e-global-color-light) !important;
}

tr.order-details-table-header th {
  color: black;
  font-size: 15px !important;
  font-weight: 600;
}

tr.order-details-table-row td {
  text-align: center !important;
  font-size: 15px !important;
}

tr.order-details-table-row td:first-child {
  text-align: left !important;
}

.order-details-table td strong {
  font-size: 15px !important;
}

.order-details-table tfoot tr:last-child td {
  background: var(--e-global-color-light) !important;
}

@media (max-width: 768px) {
  .review-form-row {
    flex-direction: column;
    padding: 15px 0;
  }

  .review-data-question {
    margin-bottom: 8px;
    padding-right: 0;
    flex: none;
  }

  .review-data-section-content {
    padding: 15px;
  }

  .review-data-section-header {
    padding: 12px 15px;
    font-size: 16px;
  }
}
