
.block-widget__overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: blockFadeIn 0.2s ease;
}

@keyframes blockFadeIn { from { opacity: 0; } to { opacity: 1; } }

.block-widget {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 28px 24px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  animation: blockScaleIn 0.25s ease;
}

@keyframes blockScaleIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.block-widget__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(239,68,68,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: #ef4444;
}

.block-widget h3 {
  font-size: 18px; font-weight: 700; color: #fff;
  margin: 0 0 8px;
}

.block-widget p {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.5; margin: 0 0 20px;
}

.block-widget__btn {
  width: 100%; padding: 14px; border-radius: 14px;
  font-weight: 700; font-size: 15px; border: none; cursor: pointer;
  font-family: inherit; display: flex; align-items: center; justify-content: center;
  gap: 8px; transition: 0.2s; margin-bottom: 8px;
}

.block-widget__btn--danger { background: #ef4444; color: #fff; }
.block-widget__btn--danger:hover { background: #dc2626; }

.block-widget__btn--cancel {
  background: rgba(255,255,255,0.06); color: #fff;
}
.block-widget__btn--cancel:hover { background: rgba(255,255,255,0.1); }