.section {
  margin-bottom: 40px;
}

.section h2 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #1e293b;
}

.approval-list {
  list-style: none;
  padding: 0;
}

.approval-list li {
  background: white;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.approval-list a {
  text-decoration: none;
  color: #2563eb;
}

.approval-list a:hover {
  text-decoration: underline;
}

/* DETAIL CARD */
.detail-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.detail-card p {
  margin-bottom: 10px;
}