/* CSS para modal de confirmação global (showConfirm) */
.confirm-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirm-modal {
  background: #23272f;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  padding: 32px 28px 24px 28px;
  max-width: 380px;
  width: 94vw;
  text-align: center;
  position: relative;
  z-index: 10000;
  animation: modalIn 0.32s cubic-bezier(.4,2,.6,1);
}
.confirm-icon {
  font-size: 38px;
  color: #ffb300;
  margin-bottom: 12px;
}
.confirm-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.confirm-message {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.confirm-warning {
  color: #ff5252;
  font-size: 0.98rem;
  margin-bottom: 18px;
}
.confirm-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.confirm-btn {
  padding: 8px 22px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.18s;
}
.confirm-btn.confirm {
  background: #ff5252;
  color: #fff;
}
.confirm-btn.confirm:hover {
  background: #e53935;
}
.confirm-btn.cancel {
  background: #23272f;
  color: #fff;
  border: 1px solid #444;
}
.confirm-btn.cancel:hover {
  background: #2d313a;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(40px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
