.dashboard_container {
  background: rgba(15, 19, 30, 0.7);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

td {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

th, td {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 15px;
  text-align: left;
}

th {
  background: rgba(255, 77, 148, 0.3);
  color: #ff4d94;
  text-transform: uppercase;
}

tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

/* PROGRESS */
.progress_section {
  margin-top: 30px;
}

.progress_bar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 15px 0;
  height: 30px;
  position: relative;
}

.progress_fill {
  height: 100%;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  color: #0a0e17;
  background: linear-gradient(90deg, #6fe4ff, #ff4d94);
  border-radius: 10px;
  transition: width 0.4s ease;
  min-width: 50px;
  white-space: nowrap;
}

/* GRADE STATUS */
.grade_none {
  color: #a0a8c3;
}

.grade_pass {
  display: inline-block;
  background: #1f7a4d;
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.grade_fail {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
}

/* EDIT BUTTON */
.edit_link {
  display: inline-block;
  background: #6fe4ff;
  color: #0a0e17;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.edit_link:hover {
  background: #ff4d94;
  color: #fff;
}