/* Legals Template Styles */
/* Custom styling for legal content pages (Terms of Use, Privacy Policy, etc.) */

/* Main container */
/* .legals-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
} */

/* Header section */
.legals-header {
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 1.5rem;
}

.legals-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.legals-last-updated {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
}

.legals-last-updated i {
  color: #6c757d;
}

/* Introduction section */
.legals-intro {
  font-size: 1.1rem;
  color: #495057;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-left: 4px solid var(--bs-primary);
  border-radius: 0 0.5rem 0.5rem 0;
}

.legals-intro p:last-child {
  margin-bottom: 0;
}

/* Section styling */
.legals-section {
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
  padding-bottom: 1rem;
}

.legals-section:first-child {
  border-top: none;
  padding-top: 0;
}

.legals-section-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.legals-section-intro {
  color: #495057;
}

.legals-section-intro p:last-child {
  margin-bottom: 0;
}

/* Bullet points styling */
.legals-bullet-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.legals-bullet-item {
  position: relative;
  padding-left: 1.5rem;
}

.legals-bullet-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: var(--bs-primary);
  border-radius: 50%;
}

.legals-bullet-label {
  color: #1a1a2e;
  font-weight: 600;
  margin-right: 0.25rem;
}

.legals-bullet-text {
  color: #495057;
}

/* Table styling */
.legals-table-wrapper {
  margin-top: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.legals-table {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.legals-table thead th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 1rem;
  background-color: #1a1a2e;
  color: #ffffff;
  border: none;
}

.legals-table tbody td {
  padding: 0.875rem 1rem;
  vertical-align: middle;
  border-color: #e9ecef;
}

.legals-table tbody tr:hover {
  background-color: #f1f3f5;
}

/* Edit bar styling */
.legals-edit-bar {
  background-color: #fff3cd;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ffc107;
  text-align: center;
}

.legals-section-edit {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.legals-section-edit:hover {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {


  .legals-table {
    font-size: 0.85rem;
  }

  .legals-table thead th,
  .legals-table tbody td {
    padding: 0.625rem 0.75rem;
  }
}

/* Print styles */
@media print {

  .legals-edit-bar,
  .legals-section-edit {
    display: none !important;
  }

  .legals-content {
    max-width: 100%;
    padding: 0;
  }

  .legals-table-wrapper {
    box-shadow: none;
  }
}