body {
  background: linear-gradient(135deg, #f7faff 60%, #e3edfa 100%);
  min-height: 100vh;
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #222;
}
.balance-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 0 18px 0;
  justify-content: center;
}
.balance-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #2d7ff9;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.balance-back {
  font-size: 2.1rem;
  color: #2d7ff9;
  text-decoration: none;
  margin-right: 24px;
  transition: color 0.2s, box-shadow 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 12px #e3edfa;
  background: #fff;
  width: 44px;
  height: 44px;
  justify-content: center;
}
.balance-back:hover {
  background: #e3edfa;
  color: #1976d2;
  box-shadow: 0 4px 18px #e3edfa;
}
.balance-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 60vh;
}
.balance-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  width: 100%;
  max-width: 700px;
}
.balance-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(45,127,249,0.10);
  padding: 28px 32px 22px 32px;
  display: flex;
  gap: 28px;
  align-items: center;
}
.balance-img-wrap {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  background: #f3f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.balance-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.balance-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.balance-row-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.balance-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a237e;
  letter-spacing: 0.5px;
}
.balance-id {
  background-color: #eef2f9;
  color: #3949ab;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
}
.balance-row-info {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 2px;
  display: flex;
  gap: 18px;
}
.balance-cost {
  color: #e53935;
  font-weight: 600;
}
.balance-amount {
  color: #00897b;
  font-weight: 600;
}
.balance-sum {
  color: #1976f9;
  font-weight: 600;
} 