.batch-cleanup-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.batch-cleanup-delete {
  border-color: rgba(255, 107, 107, .42);
  color: #ffd4d4;
}

.batch-cleanup-delete:hover:not(:disabled) {
  border-color: rgba(255, 107, 107, .75);
  background: rgba(255, 107, 107, .10);
}

.batch-cleanup-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 8, 18, .74);
  backdrop-filter: blur(8px);
}

.batch-cleanup-modal {
  width: min(100%, 520px);
  border: 1px solid rgba(255, 107, 107, .35);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(20, 35, 58, .98), rgba(8, 17, 32, .98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
}

.batch-cleanup-modal header,
.batch-cleanup-modal footer {
  padding: 18px 20px;
}

.batch-cleanup-modal header {
  border-bottom: 1px solid rgba(203, 222, 255, .12);
}

.batch-cleanup-modal h3 {
  margin: 0;
  font-size: 1.18rem;
}

.batch-cleanup-modal-body {
  padding: 18px 20px 4px;
}

.batch-cleanup-modal-body p {
  color: var(--muted);
  line-height: 1.5;
}

.batch-cleanup-modal-body strong {
  color: #fff;
}

.batch-cleanup-modal-body label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: #dbe8fb;
  font-size: .92rem;
  font-weight: 800;
}

.batch-cleanup-modal-body input {
  width: 100%;
}

.batch-cleanup-modal footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 640px) {
  .batch-cleanup-actions,
  .batch-cleanup-modal footer {
    align-items: stretch;
    flex-direction: column;
  }
}
