.claim-panel {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}

.claim-panel > .main-heading {
  text-align: center;
  margin-bottom: 10px;
}

.claim-description {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.claim-feedback {
  min-height: 22px;
  margin: 0 auto 10px;
  max-width: 760px;
  color: var(--text-secondary);
  text-align: center;
  font-size: 0.92rem;
}

.claim-feedback.is-success {
  color: #0f766e;
}

.claim-feedback.is-warning {
  color: #b45309;
}

.claim-feedback.is-error {
  color: #b91c1c;
}

.claim-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
  gap: 12px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.claim-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--bg-secondary);
}

.claim-token {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

.claim-token-meta {
  min-width: 0;
}

.claim-row .token-icon {
  width: 40px;
  height: 40px;
  background: transparent;
}

.claim-row .token-icon img,
.claim-row .token-icon .token-icon-image,
.claim-row .token-icon .token-icon-fallback {
  width: 100%;
  height: 100%;
}

.claim-row .token-icon .token-icon-fallback {
  font-size: 14px;
}

.claim-token-symbol {
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
}

.claim-token-name {
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.claim-amount {
  font-weight: 700;
  color: var(--text-primary);
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  min-width: 56px;
}

.claim-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.claim-action-button {
  margin-top: 0;
  width: auto;
  min-width: 120px;
  padding: 10px 14px;
  font-size: 0.95rem;
}

.claim-empty {
  border: 1px dashed var(--border-color);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 18px;
  text-align: center;
}

@media (max-width: 768px) {
  .claim-list {
    grid-template-columns: minmax(0, 1fr);
    max-width: 560px;
  }

  .claim-row {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .claim-actions {
    margin-left: 0;
    justify-content: space-between;
  }

  .claim-action-button {
    width: auto;
    min-width: 0;
  }
}
