.single-cell-table {
  width: 100%;
  max-width: 100%;
  margin: 2rem auto;
  border-collapse: collapse;
  /* font-family: 'Segoe UI', sans-serif; */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  table-layout: fixed; /* Ensures even column distribution */
}

.single-cell-table th,
.single-cell-table td {
  padding: 1rem;
  text-align: center;
}

.single-cell-table th {
  background-color: #007BFF;
  color: white;
  font-size: 1.1rem;
  height: 80px;
}

.single-cell-table td {
  background-color: #f8f9fa;
  font-size: 1.3rem;
  /* font-weight: bold; */
  color: #333;
  white-space: pre-wrap; /* Supports multiline content */
}

.pricing-info-container {
  background-color: #FFF5EE;
  padding: 30px;
  margin: 20px 0;
}

.pricing-table {
  display: grid;
  width: 80vw;
  justify-items: center;
  gap: 10px;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr;
  margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-table {
        grid-template-columns: repeat(2, 1fr);
        /* width: 70vw; */
    }
}

@media (min-width: 875px) {
    .pricing-table {
        width: 60vw;
    }
}

@media (pointer: coarse) {
  html {
    scroll-behavior: auto !important;
  }
}