/* Doplňkové styly jen pro administraci — vychází z proměnných v ../css/style.css */

.admin-center {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}

.admin-card {
  width: 100%; max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}

.photo-previews {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px;
}
.photo-preview {
  margin: 0; width: 84px;
}
.photo-preview img {
  width: 84px; height: 84px; object-fit: cover; border-radius: var(--radius);
  border: 1px solid var(--line);
}
.photo-preview figcaption {
  font-size: .68rem; color: var(--muted); margin-top: 4px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.post-manage-list { display: flex; flex-direction: column; gap: 10px; }
.post-manage-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 18px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.post-manage-meta { display: flex; flex-direction: column; gap: 4px; }
