
.snackbar__overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: snackFadeIn 0.2s ease;
  z-index: 999;
  
}

@keyframes snackFadeIn { from { opacity: 0; } to { opacity: 1; } }

.snackbar {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 28px 24px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  animation: snackScaleIn 0.25s ease;
}

@keyframes snackScaleIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.snackbar__icon {
  font-size: 36px;
  margin-bottom: 12px;
  color: var(--c-accent);
}

.snackbar h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.snackbar p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0 0 20px;
}

.snackbar__actions {
  display: flex;
  gap: 10px;
}

.snackbar__btn {
  flex: 1;
  padding: 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: 0.2s;
}

.snackbar__btn--primary {
  background: var(--c-accent);
  color: #000;
  width: 100%;
}

.snackbar__btn--confirm {
  background: var(--c-accent);
  color: #000;
}

.snackbar__btn--cancel {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.snackbar__btn--cancel:hover { background: rgba(255,255,255,0.1); }
