/* Start custom CSS for text-editor, class: .elementor-element-0e1b33c *//* Base table styling */
.mic-table {
  width: 100%;
  border-collapse: collapse;
}

.mic-table th,
.mic-table td {
  border: 1px solid #e5e7eb;
  padding: 12px;
  vertical-align: top;
}

.mic-table thead th {
  font-weight: 700;
  text-align: right;
}

/* Zebra rows for desktop */
.mic-table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* Mobile: turn rows into cards */
@media (max-width: 768px) {
  .mic-table thead {
    display: none;
  }

  .mic-table,
  .mic-table tbody,
  .mic-table tr,
  .mic-table td {
    display: block;
    width: 100%;
  }

  .mic-table tr {
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
  }

  .mic-table td {
    border: none;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    gap: 10px;
    padding: 10px 12px;
  }

  .mic-table td:last-child {
    border-bottom: none;
  }

  .mic-table td::before {
    content: attr(data-label);
    flex: 0 0 42%;
    font-weight: 700;
    opacity: 0.9;
  }
}/* End custom CSS */