/* ===================================================================
   RECRUITMENT COST STYLES
   ErgÃ¤nzung fÃ¼r equipment-gold.css
   =================================================================== */

/* Gold-Header im Rekrutierungs-Dialog */
.recruit-gold-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.15), rgba(218, 165, 32, 0.05));
  border: 1px solid var(--gold, #DAA520);
  border-radius: 8px;
  margin-bottom: 16px;
}

.recruit-gold-label {
  font-size: 0.9em;
  color: var(--text-muted, #888);
}

.recruit-gold-value {
  font-size: 1.3em;
  font-weight: bold;
  color: var(--gold, #DAA520);
}

/* Warnung bei zu wenig Gold */
.recruit-warning {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.85em;
  margin: 8px 0;
  text-align: center;
}

/* Karte wenn zu teuer */
.recruit-card.too-expensive {
  opacity: 0.6;
  border-color: #dc3545 !important;
}

.recruit-card.too-expensive:hover {
  transform: none;
  cursor: not-allowed;
}

/* Preis rot wenn nicht leistbar */
.recruit-cost.unaffordable {
  color: #dc3545 !important;
  text-decoration: line-through;
}

/* KostenaufschlÃ¼sselung im BestÃ¤tigungs-Dialog */
.recruit-cost-breakdown {
  background: var(--bg-darker, #1a1a1a);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.recruit-cost-breakdown h4 {
  margin: 0 0 12px 0;
  color: var(--gold, #DAA520);
  font-size: 1em;
}

.cost-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95em;
}

.cost-line:last-child {
  border-bottom: none;
}

.cost-line.total {
  border-top: 2px solid var(--gold, #DAA520);
  margin-top: 8px;
  padding-top: 10px;
  font-size: 1.1em;
}

.cost-line.available {
  color: var(--success, #28a745);
}

.cost-line.available.insufficient {
  color: #dc3545;
}

/* BestÃ¤tigungs-Buttons */
.recruit-confirm-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}

/* Fehler-Nachricht */
.recruit-error {
  color: #dc3545;
  text-align: center;
  font-weight: bold;
  margin-top: 12px;
}

/* ===================================================================
   HENCHMAN DEATH SELECTION DIALOG
   =================================================================== */

.hench-death-dialog {
  padding: 8px 0;
}

.hench-death-subtitle {
  color: var(--text-muted, #aaa);
  margin-bottom: 16px;
  font-size: 0.95em;
}

.hench-death-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hench-death-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(139, 34, 34, 0.1);
  border: 1px solid rgba(139, 34, 34, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hench-death-option:hover {
  background: rgba(139, 34, 34, 0.25);
  border-color: #8b2222;
  transform: translateX(4px);
}

.hench-death-icon {
  font-size: 1.3em;
}

.hench-death-name {
  font-size: 1.1em;
  font-weight: 500;
  color: var(--text-primary, #eee);
}

.hench-death-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color, #444);
}
