.table-container {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    display: none;
    font-size: 13px;
    font-family: 'Roboto', Arial, sans-serif;
    margin-bottom: 20px;
  }
  
  .table-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 10px;
    background-color: #e4e4e4;
    border-radius: 10px;
  }
  
  .table-cell {
    padding: 10px;
    border-bottom: 1px solid #ddd;
  }
  
  .table-header {
    background-color: #8c2351;
    font-weight: bold;
    color:white;

  }
  
  .action-button {
    padding: 5px 10px;
    background-color: #009688;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .action-button:hover {
    background-color: #00796b;
  }

  @media (max-width: 768px) {
    .table-container {
        display:flex;
    }

  }
  
  .mobile-table-container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .mobile-table-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    background-color: #f9f9f9;
  }
  
  .mobile-table-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
  }
  
  .mobile-table-header {
    font-weight: bold;
    width: 40%; /* Adjust to fit your design */
  }
  
  .mobile-table-data {
    width: 60%; /* Adjust to fit your design */
  }
  
  /* Optional: Styling for buttons inside table data */
  button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  