   .table-container {
       margin: 0 auto;
       background: rgba(255, 255, 255, 0.95);
       backdrop-filter: blur(10px);
       border-radius: 16px;
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
       overflow: hidden;
       max-width: 1200px;
       width: 100%;
       border: 1px solid rgba(255, 255, 255, 0.2);
         overflow-x: auto;
  width: 100%;
   }

   table {
       width: 100%;
       border-collapse: collapse;
       font-size: 0.95rem;
   }

   th {
       background: linear-gradient(135deg, #005AFF 0%, #0048CC 100%);
       color: white;
       padding: 1.25rem 1.5rem;
       text-align: left;
       font-weight: 600;
       letter-spacing: 0.5px;
       text-transform: uppercase;
       font-size: 0.85rem;
       position: relative;
   }

   th::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       right: 0;
       height: 2px;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
   }

   td {
       padding: 1.5rem;
       border-bottom: 1px solid rgba(0, 0, 0, 0.08);
       vertical-align: top;
       transition: all 0.3s ease;
   }

   tr:hover td {
       background: linear-gradient(135deg, rgba(0, 90, 255, 0.05) 0%, rgba(0, 61, 184, 0.05) 100%);
       transform: translateY(-1px);
   }

   .customer-id {
       font-weight: 350;
       /* color: #005AFF; */
       font-size: 1.05rem;
       white-space: nowrap;
       min-width: 200px;
   }

   .status-active,
   .status-pending {
       line-height: 1.6;
       color: #374151;
   }

   td:last-child {
       color: #003DB8;
       font-weight: 500;
       text-align: center;
       min-width: 150px;
   }

   tbody tr:last-child td {
       border-bottom: none;
   }

   /* Responsive design */
   @media (max-width: 768px) {
       body {
           padding: 1rem;
       }

       table {
           font-size: 0.85rem;
       }

       th,
       td {
           padding: 1rem;
       }

       .customer-id {
           font-size: 0.95rem;
           white-space: normal;
       }
   }

   /* Subtle animation for the entire table */
   .table-container {
       animation: fadeInUp 0.8s ease-out;
   }

   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   /* Add a subtle glow effect on hover */
   .table-container:hover {
       box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
       transition: box-shadow 0.3s ease;
   }

   .table-container a {
       color: #005AFF;
       text-decoration: none;
   }

   .table-container a:hover {
       color: #0049D6;
       text-decoration: underline;
   }