.hidden { display: none !important; }

.embeds-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.embed-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-1, rgba(255, 255, 255, 0.08));
  border-radius: 10px;
}
.embed-item-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.embed-item-main a { font-size: 0.9rem; word-break: break-all; }
.embed-item-main small { color: var(--text-dim); font-size: 0.78rem; }
.embed-item-main .embed-site-url { color: var(--text, #fff); font-size: 0.82rem; }
.embed-item-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.embed-item-actions button {
  font-size: 0.78rem; font-weight: 600;
  padding: 6px 12px;
  border-radius: 7px;
  border: 1px solid var(--border-1, rgba(255, 255, 255, 0.08));
  background: rgba(255, 255, 255, 0.04);
  color: var(--text, #fff);
  cursor: pointer;
}
.embed-item-actions button:hover { background: rgba(255, 255, 255, 0.1); }
.embed-delete-btn:hover { border-color: #ff6b6b; color: #ff6b6b; }

@media (max-width: 560px) {
  .embed-item { flex-direction: column; align-items: flex-start; }
}
