.stat-number {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

.badge {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: 600;
}

.badge-pending { background: #f0ad4e; color: #000; }
.badge-approved { background: #5cb85c; color: #fff; }
.badge-rejected { background: #d9534f; color: #fff; }
.badge-skipped { background: #777; color: #fff; }
.badge-scheduled { background: #5bc0de; color: #000; }
.badge-edited { background: #f0ad4e; color: #000; }

.error-text { color: #d9534f; }
.success-text { color: #5cb85c; }

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.schedule-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.slot-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #5bc0de;
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 1.1em;
  font-weight: 600;
}

.slot-remove-form {
  display: inline;
  margin: 0;
  padding: 0;
}

.slot-remove-btn {
  background: none;
  border: none;
  color: #333;
  font-size: 1.2em;
  cursor: pointer;
  padding: 0 2px;
  margin: 0;
  line-height: 1;
  width: auto;
}

.slot-remove-btn:hover {
  color: #d9534f;
}

.schedule-add-form {
  max-width: 400px;
}

.image-card {
  position: relative;
  cursor: pointer;
  border: 3px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.15s, opacity 0.15s;
}

.image-card img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.image-card input[type="checkbox"] {
  display: none;
}

.image-card-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 2px solid #fff;
}

.image-card-check::after {
  content: "";
  display: none;
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.image-card:has(input:checked) {
  border-color: #5cb85c;
}

.image-card:has(input:checked) .image-card-check {
  background: #5cb85c;
}

.image-card:has(input:checked) .image-card-check::after {
  display: block;
}

.image-card:has(input:not(:checked)) {
  opacity: 0.3;
  border-color: #d9534f;
}

/* ===== Landing ===== */

.landing-hero {
  padding: 6rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.landing-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 0.3rem;
  letter-spacing: -1px;
}

.landing-accent {
  color: #5bc0de;
}

.landing-subtitle {
  font-size: 1.4rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.landing-desc {
  max-width: 560px;
  margin: 0 auto 2rem;
  opacity: 0.7;
  line-height: 1.6;
}

.landing-btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: #5bc0de;
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.landing-btn-primary:hover {
  background: #46b8da;
  transform: translateY(-2px);
  color: #000;
}

.landing-section {
  padding: 4rem 0;
}

.landing-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}

/* Steps */
.landing-steps {
  gap: 1.5rem;
}

.landing-step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.landing-step-num {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: #5bc0de;
  color: #000;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}

.landing-step h3 {
  margin-bottom: 0.5rem;
}

.landing-step p {
  opacity: 0.75;
  font-size: 0.95rem;
}

/* Sources */
.landing-sources-bg {
  background: rgba(91, 192, 222, 0.04);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 4rem 0;
}

.landing-sources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.landing-source {
  padding: 8px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.landing-source:hover {
  background: rgba(91, 192, 222, 0.15);
  border-color: #5bc0de;
}

/* Features */
.landing-feature {
  padding: 1.5rem;
}

.landing-feature h3 {
  margin-bottom: 0.5rem;
  color: #5bc0de;
}

.landing-feature p {
  opacity: 0.75;
  font-size: 0.95rem;
}

/* CTA */
.landing-cta-section {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.landing-cta-section h2 {
  margin-bottom: 0.5rem;
}

.landing-cta-section p {
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .landing-hero h1 {
    font-size: 2.2rem;
  }
  .landing-subtitle {
    font-size: 1.1rem;
  }
  .landing-section-title {
    font-size: 1.5rem;
  }
}
