/* ============================================================
   SOO KEDAI — Photography Studio
   Global styles (dark theme, red accent)
   ============================================================ */

:root {
  --bg:          #0a0a0a;
  --bg-elev:    #141414;
  --bg-card:    #1a1a1a;
  --bg-card-2:  #1f1f1f;
  --border:     #2a2a2a;
  --text:       #ffffff;
  --text-muted: #9a9a9a;
  --text-dim:   #6c6c6c;
  --accent:     #e63946;
  --accent-2:   #ff4d5a;
  --accent-dark:#b82a36;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.55);

  --container: 1260px;

  /* Apple-style fluid motion */
  --ease-smooth: cubic-bezier(.2,.8,.2,1);
  --ease-spring: cubic-bezier(.2,1.2,.4,1);

  /* Prefer Apple's SF system stack where available; fall back to Inter */
  --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Inter', system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(15px, 0.4vw + 14px, 17px);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

/* iPhone notch / home-indicator safe-area insets */
body {
  padding-left:   env(safe-area-inset-left);
  padding-right:  env(safe-area-inset-right);
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

a:hover { color: var(--accent); }

button { font-family: inherit; cursor: pointer; }

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0 0 1rem;
}

/* Fluid Apple-style headlines — scale smoothly between viewport sizes */
h1 { font-size: clamp(2.5rem, 7vw + 0.5rem, 6rem);    letter-spacing: -0.045em; font-weight: 800; }
h2 { font-size: clamp(2rem,   4.5vw + 0.2rem, 4rem);  letter-spacing: -0.035em; font-weight: 800; }
h3 { font-size: clamp(1.25rem, 1.6vw + 0.5rem, 1.75rem); letter-spacing: -0.02em; font-weight: 700; }
h4 { font-weight: 700; letter-spacing: -0.015em; }

p  { margin: 0 0 1rem; color: var(--text-muted); font-size: clamp(.95rem, .3vw + .85rem, 1.1rem); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

@media (max-width: 600px) {
  section { padding: 3.25rem 0; }
  .container { padding: 0 1.1rem; }
}

/* ---------- Utility ---------- */
.accent      { color: var(--accent); }
.text-muted  { color: var(--text-muted); }
.center      { text-align: center; }
.muted       { color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  text-transform: uppercase;
}

.section-title .underline {
  display: block;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  margin: 1rem auto 0;
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(230,57,70,.5);
}

.red-bar {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-right: .75rem;
  vertical-align: middle;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform .35s var(--ease-spring),
    background .25s var(--ease-smooth),
    color .25s var(--ease-smooth),
    border-color .25s var(--ease-smooth),
    box-shadow .25s var(--ease-smooth);
  white-space: nowrap;
  position: relative;
  min-height: 44px; /* iOS minimum tap target */
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 currentColor;
  opacity: 0;
  pointer-events: none;
  transition: box-shadow .45s var(--ease-smooth), opacity .45s var(--ease-smooth);
}
.btn:hover { transform: translateY(-2px) scale(1.015); color: #fff; }
.btn:active { transform: translateY(0) scale(.985); transition-duration: .15s; }
.btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(230,57,70,.35);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 24px -10px rgba(230,57,70,.8);
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 12px 36px -10px rgba(230,57,70,.9);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover { background: #fff; color: #000; }

.btn-dark {
  background: #000;
  color: #fff;
}
.btn-dark:hover { background: #1a1a1a; }

.btn-light {
  background: #fff;
  color: #000;
}
.btn-light:hover { background: #e8e8e8; color: #000; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,.62);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .35s var(--ease-smooth), border-color .35s var(--ease-smooth), padding .35s var(--ease-smooth);
}

/* When .nav-shrink is toggled by main.js (past ~80px scroll) */
.navbar.nav-shrink {
  background: rgba(10,10,10,.92);
  border-bottom-color: rgba(255,255,255,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(.75rem, 1vw + .4rem, 1.2rem) clamp(1rem, 2vw, 1.5rem);
  max-width: var(--container);
  margin: 0 auto;
  transition: padding .35s var(--ease-smooth);
}
.navbar.nav-shrink .nav-inner { padding-top: .65rem; padding-bottom: .65rem; }

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  font-size: .95rem;
}

.brand-logo {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 0 0 2px rgba(230,57,70,.35);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  position: relative;
  padding: .35rem .1rem;
  transition: color .25s var(--ease-smooth);
}

.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--accent); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.5rem;
}

@media (max-width: 840px) {

  /* Make navbar itself fully solid on mobile */
  .navbar {
    background: #000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: #000 !important;   /* force black */
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    padding-top: 100px;
    gap: 1.5rem;

    list-style: none;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);

    transition: 0.3s ease;
    z-index: 999;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
  }

  .nav-links a {
    color: white;
    font-size: 1rem;
    display: block;
    padding: 12px;
  }

  .nav-toggle {
    display: block;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    z-index: 1000;
    position: relative;
  }

  .nav-toggle:hover { background: rgba(255,255,255,.06); }
}

/* ---------- Footer ---------- */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
  color: var(--text-muted);
  font-size: .92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer h4 {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .55rem; }
.footer ul a:hover { color: var(--accent); }

.footer .brand { margin-bottom: 1rem; }

.socials {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}

.socials a {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: #d0d0d0;
  transition: background .2s, color .2s, border-color .2s;
}
.socials a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--text-dim);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Cards (shared) — Apple-like glassy surfaces ---------- */
.card {
  background: linear-gradient(160deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 50%, rgba(255,255,255,0) 100%), var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition:
    transform .6s var(--ease-smooth),
    border-color .4s var(--ease-smooth),
    box-shadow .6s var(--ease-smooth),
    background .4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(230,57,70,.09), transparent 40%);
  opacity: 0;
  transition: opacity .5s var(--ease-smooth);
}
.card:hover {
  border-color: rgba(230,57,70,.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card:hover::before { opacity: 1; }

.icon-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(230,57,70,.1);
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.icon-circle svg { width: 20px; height: 20px; }

.icon-circle-lg {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(230,57,70,.08);
  border: 2px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.icon-circle-lg svg { width: 28px; height: 28px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  left: auto;
  transform: translateX(150%);
  background: #1a1a1a;
  border: 1px solid var(--accent);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  z-index: 200;
  transition: transform .3s cubic-bezier(.2,.9,.3,1.2);
  max-width: calc(100% - 4rem);
}
.toast.show { transform: translateX(0); }
.toast.error { border-color: #ff6b6b; }

/* ---------- Reveal-on-scroll (Apple-style deeper motion) ----------
   Content is visible by default so the page still works
   without JS (e.g. opened via file:// where ES modules are
   blocked). The .js-reveal class is added by main.js and
   activates the hidden-then-animate behaviour.
*/
.reveal { opacity: 1; transform: none; filter: none; }

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  filter: blur(6px);
  transition:
    opacity .9s var(--ease-smooth),
    transform 1.1s var(--ease-smooth),
    filter 1s var(--ease-smooth);
}
.js-reveal .reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ============================================================
   Media container — used everywhere a photo or video appears.
   Preserves the original placeholder aspect-ratio/layout and
   adds hover zoom + subtle vignette. Keeps lazy-loading behaviour.
   ============================================================ */
.media {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  isolation: isolate;
}
.media img,
.media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease-smooth), filter .5s var(--ease-smooth);
}
.media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(230,57,70,.07), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
  transition: opacity .3s;
}
.media:hover img,
.media:hover video { transform: scale(1.04); }

/* Ken-burns slow zoom on hero imagery */
@keyframes kenburns {
  0%   { transform: scale(1.0)  translateY(0); }
  100% { transform: scale(1.08) translateY(-1.5%); }
}
.media.kenburns img {
  animation: kenburns 18s ease-in-out infinite alternate;
}

/* Play-button overlay for video media blocks */
.media.video-wrap .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.2);
  transition: background .25s, opacity .25s;
  cursor: pointer;
  z-index: 2;
}
.media.video-wrap .play-btn:hover { background: rgba(0,0,0,.35); }
.media.video-wrap .play-btn svg {
  width: clamp(58px, 8vw, 88px);
  height: clamp(58px, 8vw, 88px);
  color: #fff;
  filter: drop-shadow(0 6px 30px rgba(0,0,0,.7));
  transition: transform .45s var(--ease-spring);
}
.media.video-wrap .play-btn:hover svg { transform: scale(1.12); }
.media.video-wrap .play-btn.hidden { opacity: 0; pointer-events: none; }

/* ============================================================
   Creative polish (no layout change)
   ============================================================ */

/* Scroll-progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  z-index: 100;
  box-shadow: 0 0 12px rgba(230,57,70,.6);
  transition: width .1s ease-out;
}

/* Film-grain overlay (very subtle) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>");
}

/* Staggered reveal — children of any .reveal-stagger animate in order */
.js-reveal .reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px) scale(.99);
  filter: blur(4px);
  transition:
    opacity .85s var(--ease-smooth),
    transform 1s var(--ease-smooth),
    filter .85s var(--ease-smooth);
}
.js-reveal .reveal-stagger.visible > *           { opacity: 1; transform: none; filter: none; }
.js-reveal .reveal-stagger.visible > *:nth-child(1) { transition-delay: .00s; }
.js-reveal .reveal-stagger.visible > *:nth-child(2) { transition-delay: .09s; }
.js-reveal .reveal-stagger.visible > *:nth-child(3) { transition-delay: .18s; }
.js-reveal .reveal-stagger.visible > *:nth-child(4) { transition-delay: .27s; }
.js-reveal .reveal-stagger.visible > *:nth-child(5) { transition-delay: .36s; }
.js-reveal .reveal-stagger.visible > *:nth-child(6) { transition-delay: .45s; }
.js-reveal .reveal-stagger.visible > *:nth-child(7) { transition-delay: .54s; }
.js-reveal .reveal-stagger.visible > *:nth-child(8) { transition-delay: .63s; }
.js-reveal .reveal-stagger.visible > *:nth-child(9) { transition-delay: .72s; }

html { scroll-behavior: smooth; }

/* ---------- Parallax (scroll-linked media translate) ----------
   main.js sets --parallax-y on elements marked .parallax
   and .parallax-strong based on their position in the viewport.
*/
.parallax,
.parallax-strong {
  will-change: transform;
}
.parallax img,
.parallax video {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.1);
  transition: transform .05s linear;
}
.parallax-strong img,
.parallax-strong video {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.18);
  transition: transform .05s linear;
}

/* ---------- Magnetic-button hover (JS-driven) ---------- */
.magnetic {
  will-change: transform;
  transition: transform .4s var(--ease-spring);
}

/* ---------- Card tilt (JS sets --tilt-x / --tilt-y) ---------- */
.tilt {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(0);
  transition: transform .5s var(--ease-smooth);
}
.tilt:hover { transition-duration: .08s; }

/* ---------- Respect user preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .media.kenburns img { animation: none !important; }
  .parallax img, .parallax video,
  .parallax-strong img, .parallax-strong video { transform: none !important; }
  .js-reveal .reveal,
  .js-reveal .reveal-stagger > * { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* Map iframe — matches the aspect ratio of the original card */
.map-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  display: block;
  filter: grayscale(.15) contrast(1.05);
  transition: filter .3s;
  background: #0f0f0f;
}
.map-card:hover .map-frame { filter: none; }

/* ---------- Placeholder image (no-asset fallback) ---------- */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, #1c1c1c 0%, #0f0f0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(230,57,70,.12), transparent 50%);
}

.img-placeholder svg {
  width: 42px; height: 42px;
  opacity: .35;
  position: relative;
  z-index: 1;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: 16px;
  transition: all 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stat-card h4 {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.stat-card .value {
  font-size: 2rem;
  font-weight: 700;
}

.stat-desc {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 0.5rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  font-size: 0.85rem;
  opacity: 0.6;
  padding: 0.75rem;
  border-bottom: 1px solid #eee;
}

.admin-table td {
  padding: 1rem 0.75rem;
  border-bottom: 1px solid #f2f2f2;
  font-size: 0.9rem;
}

.admin-table tr:hover {
  background: rgba(0,0,0,0.02);
}

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.subtext {
  font-size: 0.85rem;
  opacity: 0.6;
}

.admin-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: all 0.2s;
}

.admin-menu a:hover {
  background: rgba(0,0,0,0.05);
}

.admin-menu .active {
  background: black;
  color: white;
}

.admin-stats,
.card {
  margin-bottom: 3rem;
}

/* TERMS POPUP */
.terms-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.terms-box {
  background: #111;
  color: white;
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.terms-box h2 {
  margin-bottom: 1rem;
}

.terms-box p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.checkbox-area {
  margin: 1.5rem 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.checkbox-area label {
  font-size: 0.9rem;
}

#agreeBtn {
  background: #e63946;
  color: white;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
}

#agreeBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

.status-badge.pending {
  background: rgba(255,255,0,0.15);
  color: yellow;
}

.status-badge.approved {
  background: rgba(0,255,0,0.15);
  color: lime;
}

.status-badge.rejected {
  background: rgba(255,0,0,0.15);
  color: red;
}

.action-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

/* Approve */
.approve-btn {
  background: rgba(0,255,0,0.1);
  color: lime;
}

.approve-btn:hover {
  background: lime;
  color: black;
}

/* Reject */
.reject-btn {
  background: rgba(255,165,0,0.1);
  color: orange;
}

.reject-btn:hover {
  background: orange;
  color: black;
}

/* Delete */
.delete-btn {
  background: rgba(255,0,0,0.1);
  color: red;
}

.delete-btn:hover {
  background: red;
  color: white;
}

.admin-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter-input,
.filter-select {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #111;
  color: white;
}

.filter-input {
  min-width: 220px;
}
