:root {
  --color-active: #2e7d32;
  --color-pending: #e6a700;
  --color-archived: #6c757d;
}

body {
  background: #f5f6f8;
}

.app-navbar {
  background: #1f2d3d;
}

.card-child {
  border: none;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  border-left: 6px solid var(--status-color, #ccc);
  height: 100%;
}

.card-child .card-img-top {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #e9ecef;
}

.card-child .card-img-placeholder {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  background: #e9ecef;
  font-size: 2rem;
}

.status-badge {
  display: inline-block;
  padding: 0.25em 0.65em;
  border-radius: 999px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-filter-tabs .nav-link {
  border-radius: 999px;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

.photo-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.public-hero {
  background: #1f2d3d;
  color: #fff;
  padding: 1.5rem 0;
}

@media (max-width: 576px) {
  .card-child .card-img-top,
  .card-child .card-img-placeholder {
    height: 180px;
  }
}

.bulk-checkbox {
  display: none;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  width: 1.3rem;
  height: 1.3rem;
  cursor: pointer;
}

.bulk-select-active .bulk-checkbox {
  display: block;
}

.bulk-action-bar {
  position: sticky;
  bottom: 0;
  z-index: 10;
  background: #fff;
  border-top: 1px solid #dee2e6;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 1rem;
  margin: 1rem -0.75rem -0.75rem;
}

@media print {
  .no-print {
    display: none !important;
  }
  body {
    background: #fff;
  }
  .card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}
