.fee-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fee-item {
  background-color: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.fee-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.fee-title {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.fee-amount {
  font-size: 18px;
  font-weight: 600;
  color: #ff4757;
}

.fee-info {
  margin-bottom: 8px;
}

.fee-order,
.fee-order-amount {
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}

.fee-time {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.fee-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
}

.fee-status.paid {
  background-color: #e8f5e9;
  color: #26de81;
}

.fee-status.unpaid {
  background-color: #ffebee;
  color: #ff4757;
}

.fee-status.pending {
  background-color: #fff3e0;
  color: #ff9800;
}

.btn-pay-now {
  width: 100%;
  padding: 10px;
  background-color: #26de81;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-pay-now:hover {
  opacity: 0.9;
}

.loading,
.empty,
.error {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 14px;
}

.error {
  color: #ff4757;
}
