.dashboard {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.student_my_groups {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.dashboard_button {
    padding: 10px;
    color: #00126D;
    background-color: #fff;
    font-weight: 600;
    font-size: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.dashboard_button:hover {
    background-color: #00126D;
    color: #fff;
    transform: scale(1.1);
}

.dashboard_button:active {
  transform: scale(0.95);
  background-color: #00126D;
  color: #fff;
}