/* Beautify the rank list table */
.table-striped tbody tr td {
  background: #f9f9f9 !important;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.table-striped tbody tr:hover td {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #ffffff !important;
}

.table-striped i.fa-pencil-square-o {
  color: #2c3e50;
  margin-right: 10px;
  font-size: 16px;
}

/* Regular link style */
.table-striped a {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease-in-out;
}

/* Simple glow on hover */
.table-striped a:hover {
  text-shadow: 0 0 5px #00f5ff, 0 0 8px #00f5ff, 0 0 12px #00f5ff;
  color: #000; /* or keep #333 if you like */
}
