.dashboard-container h3 {
  text-align: center
}

.dashboard-container ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center
}

.dashboard-container ul li {
  list-style-type: none;
  margin-left: 10px;
  border: 1px solid pink;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .dashboard-container ul {
    padding-left: 0;
  }

  .dashboard-container ul li {
    flex-direction: column;
    margin-bottom: 10px;
    margin-left: 0;
    width: 100%;
  }

  .table thead {
    display: none;
  }

  .table, .table tbody, .table tr, .table td {
    display: block;
    width: 100%;
  }

  .table tr {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    padding: 0.5rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    height: 240px;
  }

  .table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    border: 0;
    text-wrap: wrap;
  }

  .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
  }
}
