.delete-video {
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #090b0ddd;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  opacity: 0;
  transition: .2s;
}

.card:hover .delete-video,
.delete-video:focus { opacity: 1; }
.delete-video:hover { background: #d94b4b; }
.job-actions { display: flex; gap: 8px; margin-top: 12px; }
.job-actions button { border: 1px solid #414748; padding: 8px 12px; border-radius: 3px; font-size: 12px; }
.job-actions button:hover { border-color: var(--lime); }
.job-actions .danger { color: #ff8e8e; }
.job-actions .danger:hover { border-color: #d94b4b; }
.job-details { margin-top: 8px; color: var(--muted); font-size: 12px; }
.job-title { margin-bottom: 8px; font-size: 14px; font-weight: 750; line-height: 1.35; }

@media (max-width: 850px) {
  .delete-video { opacity: 1; }
}
