body {
  margin: 0;
  color: #333;
}

.app-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.app-title {
  text-align: center;
  color: #bfa046;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 2px solid #bfa046;
  padding-bottom: 10px;
}

.applications-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.application-card {
  border: 1px solid #ddd;
  border-left: 5px solid #bfa046;
  padding: 20px;
  border-radius: 12px;
  background-color: #fafafa;
  transition: transform 0.2s ease;
}

.application-card:hover {
  transform: scale(1.01);
}

.application-card .field {
  margin-bottom: 10px;
  font-size: 1rem;
}

.application-card .field strong {
  color: #444;
}

.application-card button {
  padding: 8px 16px;
  margin-right: 10px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.application-card button:first-of-type {
  background-color: #bfa046;
  color: white;
}

.application-card button:last-of-type {
  background-color: #d9534f;
  color: white;
}

.application-card button:hover {
  opacity: 0.9;
}

.application-card {
  background-color: white;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 20px;
  margin: 16px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.3s ease;
}

.application-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.field {
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
}

.approved-msg {
  margin-top: 15px;
  padding: 15px;
  background-color: #fef8e7;
  border-left: 4px solid gold;
  border-radius: 12px;
  font-size: 14px;
  color: #4a3c00;
}

.approved-msg strong {
  color: #2b2100;
}

.approved {
  color: green;
  font-weight: bold;
}

.counseling-info {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}
