body.account-detail-page {
  background: #ededed;
  color: #111111;
}

.detail-card {
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  background: #f8f8f8;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  padding: 1rem;
}

.detail-back-link {
  color: #4b4b4b;
  text-decoration: none;
}

.detail-back-link:hover {
  text-decoration: underline;
}

.detail-card h1 {
  margin: 0.8rem 0 0.9rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.detail-item {
  border: 1px solid #e0e0e0;
  border-radius: 9px;
  background: #ffffff;
  padding: 0.58rem 0.66rem;
}

.detail-item-label {
  margin: 0;
  color: #666666;
  font-size: 0.75rem;
}

.detail-item-value {
  margin: 0.18rem 0 0;
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 600;
  word-break: break-word;
}

.detail-message {
  margin-top: 0.85rem;
  border-radius: 8px;
  border: 1px solid #f2d9a5;
  background: #fff7e8;
  color: #7f5c10;
  padding: 0.58rem 0.68rem;
  font-size: 0.84rem;
}

@media (max-width: 760px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}
