      /* Custom CSS for table layout */
      .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        padding: 0;
    }

    .booking-table {
        min-width: 1000px; /* Minimum width to prevent content wrapping */
        width: 100%;
        table-layout: fixed; /* Fixed table layout */
        border-collapse: collapse;
    }

    .booking-table th {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Column widths */
    .booking-table th:nth-child(1) { width: 5%; }  /* STT */
    .booking-table th:nth-child(2) { width: 20%; } /* Tên phòng */
    .booking-table th:nth-child(3) { width: 25%; } /* Thông tin khách hàng */
    .booking-table th:nth-child(4) { width: 15%; } /* Dữ liệu phòng */
    .booking-table th:nth-child(5) { width: 15%; } /* Thanh toán */
    .booking-table th:nth-child(6) { width: 10%; } /* Trạng thái */
    .booking-table th:nth-child(7) { width: 10%; } /* Hành động */

    /* Table cell content */
    .booking-table td {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }