.container {
    display: flex;
    flex-wrap: wrap;
  }

  .row {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
    width: 300px; /* Adjust as needed */
  }

  .row.expanded {
    height: auto;
  }

  .row header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
  }

  .details {
    display: none;
    padding: 10px;
  }

  /* Add more CSS styles for visual enhancements */
  .row {
    background-color: #f0f0f0; 
  }

  .row header {
    background-color: #eee;
  }

  .details {
    background-color: #f9f9f9;
  }