.elementor-1736 .elementor-element.elementor-element-4b694207{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-61b1367a *//* Wrapper for the table */
.scrollable-table-wrapper {
  overflow-x: auto; /* Allows horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on mobile */
  margin: 0 auto;
  padding: 10px;
}

/* Table styling */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.responsive-table th, .responsive-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.responsive-table th {
  background-color: #ffffff;
  font-weight: bold;
}

.responsive-table a {
  color: #000000;
  text-decoration: none;
}

.responsive-table a:hover {
  text-decoration: underline;
}

/* Responsiveness: make the table scrollable on small screens */
@media (max-width: 768px) {
  .responsive-table {
    min-width: 600px; /* Prevent table from shrinking too much */
  }
}

@media (max-width: 480px) {
  .responsive-table th, .responsive-table td {
    padding: 5px;
    font-size: 12px;
  }
}/* End custom CSS */