/* Classic = palette d'origine, pas d'override (tout vient de style.css) */


/* ===== Modal de confirmation ===== */
.gp-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gp-confirm-fadein 0.15s ease;
}
.gp-confirm-modal {
  background: rgba(12, 15, 21, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 420px;
  max-width: 92vw;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: gp-confirm-popin 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-mono);
  overflow: hidden;
}
.gp-confirm-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.gp-confirm-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.gp-confirm-icon.warning { background: rgba(255, 176, 32, 0.15); color: #ffb020; }
.gp-confirm-icon.danger  { background: rgba(255, 77, 109, 0.15); color: #ff4d6d; }
.gp-confirm-title { font-size: 16px; font-weight: 700; color: var(--text-0); }
.gp-confirm-body { padding: 20px 24px; color: var(--text-1); font-size: 13px; line-height: 1.6; }
.gp-confirm-body strong { color: var(--text-0); }
.gp-confirm-actions {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.2);
}
.gp-confirm-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid var(--border);
}
.gp-confirm-btn-cancel { background: var(--bg-2); color: var(--text-1); }
.gp-confirm-btn-cancel:hover { background: var(--bg-3); color: var(--text-0); }
.gp-confirm-btn-confirm-stop {
  background: linear-gradient(135deg, var(--red) 0%, #dc2626 100%);
  color: #fff; border: 1px solid var(--red);
}
.gp-confirm-btn-confirm-restart {
  background: linear-gradient(135deg, var(--amber) 0%, #d97706 100%);
  color: #1a0f00; border: 1px solid var(--amber);
}
.gp-confirm-btn-confirm-stop:hover, .gp-confirm-btn-confirm-restart:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

@keyframes gp-confirm-fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes gp-confirm-popin  { from { opacity: 0; transform: scale(0.9) translateY(-20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
