/* ====== EXTRA RESPONSIVE IMPROVEMENTS ====== */

/* Smooth scroll on mobile */
.table-wrapper {
  -webkit-overflow-scrolling: touch;
}

/* Table better readability */
.orders-table td {
  line-height: 1.5;
}

/* Sticky table header (desktop + mobile) */
.orders-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f1f5f9;
}

/* Hover effect */
.orders-table tbody tr:hover {
  background: #eef2ff;
  transition: 0.2s ease;
}

/* ===== MOBILE VIEW (Cards Feel) ===== */
@media (max-width: 600px) {
  .orders-table {
    border: none;
  }

  .orders-table thead {
    display: none;
  }

  .orders-table,
  .orders-table tbody,
  .orders-table tr,
  .orders-table td {
    display: block;
    width: 100%;
  }

  .orders-table tr {
    margin-bottom: 15px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 12px #00000012;
    padding: 10px;
  }

  .orders-table td {
    border: none;
    padding: 6px 0;
    font-size: 13px;
  }

  .orders-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #475569;
    display: block;
    margin-bottom: 2px;
  }
}
