/* Container: hellgrau + 3D Look */
.acc-head{
  background: #f2f2f2;
  border-radius: 16px;
  border: 1px solid #d8d8d8;
  box-shadow:
    0 8px 18px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.75);
}

/* Layout (ohne Flex-Gefrickel in kleinen Breakpoints) */
.acc-head-inner{
  display: flex;
  gap: 16px;
  align-items: stretch;
  justify-content: space-between;
}
.acc-head-left{
  flex: 1 1 auto;
  min-width: 260px;
}
.acc-head-right{
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start; /* auf Höhe NAME */
}

/* Zeilen links */
.acc-head-row{
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 3px 0;
}
.acc-head-label{
  width: 140px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}
.acc-head-value{
  font-weight: 500;
  color: #111;
  word-break: break-word;
}

/* Ovaler Rahmen rechts (Pill) */
.acc-sum-pill{
  min-width: 170px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #e9e9e9 100%);
  border: 1px solid #cfcfcf;
  box-shadow:
    0 10px 18px rgba(0,0,0,0.18),
    inset 0 2px 0 rgba(255,255,255,0.85),
    inset 0 -2px 6px rgba(0,0,0,0.08);
  text-align: right;
}

/* Währung oben, Summe darunter */
.acc-sum-currency{
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #444;
  font-size: 12px;
  line-height: 1.1;
}
.acc-sum-value{
  font-weight: 900;
  font-size: 20px;
  line-height: 1.1;
  color: #111;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 992px){
  .acc-head-inner{
    flex-direction: column;
  }
  .acc-head-right{
    align-items: flex-end;
  }
  .acc-sum-pill{
    width: 100%;
    text-align: center;
  }
}
