/* ===========================================================
   PGS CBEL — corporate site styles
   Palette aligned with the original WordPress theme:
     primary blue  #2196F3 (CTA, top strip, links)
     primary dark  #1976d2
     yellow accent #ffdc39 (logo + small accents only)
     ink           #14212a
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Roboto+Slab:wght@500;700&display=swap');

:root {
  --color-primary: #2196F3;
  --color-primary-dark: #1976d2;
  --color-primary-light: #e3f2fd;
  --color-accent: #ffdc39;
  --color-ink: #14212a;
  --color-muted: #5f6d86;
  --color-line: #e2e6ee;
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --shadow-sm: 0 2px 8px rgba(20, 38, 80, 0.08);
  --shadow-md: 0 8px 24px rgba(20, 38, 80, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --container: 1200px;
  --header-h: 78px;
  --transition: 180ms ease;
  font-family: 'Roboto', system-ui, 'Segoe UI', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--color-accent);
}

h1, h2, h3, h4 {
  color: var(--color-ink);
  margin: 0 0 0.5em;
  line-height: 1.25;
  font-weight: 700;
  font-family: 'Roboto Slab', 'Roboto', serif;
}

h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* ============= Top "Bringing Asia to the World" banner ============= */
:root {
  --color-orange: #ff9800;
  --color-orange-dark: #f57c00;
}
.top-banner {
  background: var(--color-orange);
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 16px;
}

/* ============= Top contact bar ============= */
.topbar {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.topbar a {
  color: #fff;
  opacity: 0.95;
}
.topbar a:hover {
  color: var(--color-accent);
  opacity: 1;
}
.topbar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.topbar-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
.topbar-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: background var(--transition), transform var(--transition);
}
.topbar-social a:hover {
  background: var(--color-accent);
  transform: translateY(-1px);
}
.topbar-social svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

/* ============= Header ============= */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-line);
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 56px;
  width: auto;
}
.brand-text {
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: 0.04em;
}
.brand-text small {
  display: block;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--color-muted);
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  position: relative;
  padding: 10px 14px;
  font-weight: 600;
  color: var(--color-ink);
  border-radius: var(--radius-sm);
}
.nav a:hover,
.nav a.is-active {
  color: var(--color-primary);
  background: var(--color-primary-light);
}
.btn-primary {
  display: inline-block;
  background: var(--color-primary);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff !important;
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  margin: 4px 0;
}

@media (max-width: 880px) {
  .nav {
    position: absolute;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--color-line);
    padding: 12px 16px 18px;
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }
  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    width: 100%;
  }
  .menu-toggle {
    display: block;
  }
  .header-cta {
    display: none;
  }
}

/* ============= Sections ============= */
main {
  display: block;
}
.section {
  padding: 56px 0;
}
.section + .section {
  padding-top: 0;
}
.section-title {
  position: relative;
  text-align: center;
  margin: 0 0 36px;
  letter-spacing: 0.04em;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: 12px auto 0;
  border-radius: 2px;
}
.hero {
  margin: 24px 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
}
/* ============= Hero (home: map + overlay caption + 4 info chips + swiper) ============= */
.hero-home {
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero-map {
  position: relative;
  max-width: var(--container);
  margin: 24px auto 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hero-map > img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  pointer-events: none;
}
.hero-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 36px;
  margin: 0;
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, rgba(255,152,0,0.92) 0%, rgba(255,152,0,0.78) 60%, rgba(255,152,0,0) 100%);
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
  text-transform: uppercase;
  pointer-events: auto;
}
.hero-info {
  list-style: none;
  margin: 0;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
  pointer-events: auto;
}
.hero-info li {
  background: rgba(255,255,255,0.96);
  color: var(--color-ink);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  min-width: 170px;
}
.hero-info li svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: var(--color-orange);
  color: #fff;
  border-radius: 50%;
  padding: 6px;
  fill: #fff;
}
.hero-info li b {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 700;
}
.hero-info li span.val {
  font-weight: 600;
  color: var(--color-ink);
}

/* swiper under hero */
.hero-swiper {
  max-width: var(--container);
  margin: 18px auto 0;
  padding: 0 36px;
  position: relative;
}
.hero-swiper .swiper {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-line);
}
.hero-swiper .swiper-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: var(--color-primary);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}
.hero-swiper .swiper-pagination-bullet {
  background: var(--color-primary);
  opacity: 0.4;
}
.hero-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}
@media (max-width: 880px) {
  .hero-overlay { flex-direction: column; }
  .hero-title { font-size: 1.1rem; padding: 8px 16px; background: rgba(255,152,0,0.85); }
  .hero-info { grid-template-columns: 1fr 1fr; padding: 10px; gap: 8px; }
  .hero-info li { min-width: 0; font-size: 0.74rem; padding: 8px; }
  .hero-swiper { padding: 0 12px; }
  .hero-swiper .swiper-slide img { height: 160px; }
}

/* ============= Galleries ============= */
.warehouse-hero {
  max-width: var(--container);
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.warehouse-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: #d8dee8;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery img:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============= Service cards (Main Service — 4 equal centered) ============= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}
@media (max-width: 880px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: none;
  background: #000;
  text-decoration: none;
}
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 320ms ease;
}
.service-card:hover img {
  transform: scale(1.04);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color var(--transition);
}
.service-card:hover::after {
  border-color: var(--color-primary);
}

/* ============= Values ============= */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  margin-top: 12px;
}
.value {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.value h2 {
  font-size: 1.25rem;
  color: var(--color-ink);
  margin-bottom: 12px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
}
.value p {
  color: var(--color-muted);
  margin: 0;
  line-height: 1.7;
}

/* ============= Prose (about, services, advantages, service detail) ============= */
.prose {
  background: var(--color-surface);
  padding: 8px 0 24px;
  border-radius: 0;
  box-shadow: none;
  margin: 24px auto;
  max-width: 980px;
}
.prose.center {
  text-align: center;
}
.prose h1 {
  margin-bottom: 0.3em;
}
.prose .kicker {
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1.4em;
  font-weight: 700;
}
.prose p {
  font-size: 1.02rem;
}
.list-disc {
  padding-left: 1.2em;
  margin: 0 0 1em;
}
.list-disc li {
  margin-bottom: 0.35em;
}
.list-check {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4em;
}
.list-check li {
  position: relative;
  padding: 10px 12px 10px 36px;
  background: var(--color-primary-light);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-weight: 500;
}
.list-check li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.flow-figure {
  margin: 28px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.flow-figure img {
  width: 100%;
  height: auto;
}
.adv-stack {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}
.adv-stack img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.logistic-item {
  margin: 28px 0;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  padding: 22px;
}
.logistic-item h3 {
  color: var(--color-primary);
  margin-bottom: 8px;
}
.logistic-item img {
  margin-top: 12px;
  border-radius: var(--radius-md);
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

/* ============= Quote form ============= */
.section-quote {
  background: #fff;
  color: var(--color-ink);
  padding: 56px 0;
}
.section-quote .section-title {
  color: var(--color-ink);
}
.section-quote .section-title::after {
  background: var(--color-primary);
}
.quote-form {
  max-width: 880px;
  margin: 0 auto;
  background: transparent;
  backdrop-filter: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.form-hint {
  margin: 0 0 4px;
  font-size: 0.95rem;
  color: var(--color-muted);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.quote-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink);
  opacity: 1;
}
.quote-form label.full {
  grid-column: 1 / -1;
}
.quote-form input,
.quote-form textarea {
  margin-top: 6px;
  width: 100%;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  font-size: 1rem;
  color: var(--color-ink);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.18);
}
.quote-form .req {
  color: var(--color-primary);
  margin-left: 2px;
}
.form-services {
  border: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}
@media (max-width: 600px) {
  .form-services { grid-template-columns: 1fr; }
}
.form-services legend {
  grid-column: 1 / -1;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-ink);
  margin-bottom: 8px;
  padding: 0;
}
.chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border-radius: 0;
  padding: 4px 0;
  margin: 0;
  font-weight: 500;
  cursor: pointer;
  border: 0;
  color: var(--color-ink);
  font-size: 0.95rem;
}
.chip input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
}
.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  margin: 0;
  min-height: 1.2em;
  font-weight: 600;
  color: var(--color-primary);
}
.form-status.is-ok {
  color: #16a34a;
}
.form-status.is-err {
  color: #dc2626;
}
.quote-form.is-submitting {
  opacity: 0.7;
  pointer-events: none;
}

/* ============= Footer ============= */
.site-footer {
  margin-top: 56px;
  background: #f4f6fa;
  border-top: 1px solid var(--color-line);
  text-align: center;
  padding: 22px 16px;
  font-size: 0.88rem;
  color: var(--color-muted);
}
.footer-meta {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
}
.footer-meta a {
  color: var(--color-primary);
}

/* ============= Misc ============= */
.notice {
  background: #fff7e6;
  border: 1px solid #f3c66c;
  color: #7a4a00;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

/* ============= Admin SPA ============= */
.admin-body {
  background: #0f172a;
  color: #e2e8f0;
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  min-height: 100vh;
  margin: 0;
}
.admin-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-side {
  background: #0b1326;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.admin-side h1 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.admin-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.admin-tab {
  background: transparent;
  border: none;
  text-align: left;
  color: rgba(226, 232, 240, 0.75);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}
.admin-tab.is-active {
  background: var(--color-primary);
  color: #fff;
}
.admin-side .admin-foot {
  margin-top: auto;
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.55);
  line-height: 1.5;
}
.admin-main {
  padding: 32px clamp(20px, 4vw, 48px);
  overflow-x: auto;
}
.admin-gate {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #0f172a;
}
.admin-gate form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  width: min(100% - 32px, 360px);
  display: grid;
  gap: 14px;
  color: #e2e8f0;
}
.admin-gate label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.admin-gate input {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1rem;
}
.admin-gate input:focus {
  outline: none;
  border-color: var(--color-accent);
}
.admin-gate button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
.admin-gate button:disabled {
  opacity: 0.6;
  cursor: progress;
}
.admin-gate .gate-msg {
  min-height: 1.2em;
  color: #ffb7b7;
}
.admin-gate .gate-msg.is-ok {
  color: #6ed79a;
}
.panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.panel h2 {
  margin-top: 0;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.panel-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.panel-row label {
  display: grid;
  gap: 4px;
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.panel input[type="text"],
.panel input[type="email"],
.panel input[type="url"],
.panel textarea,
.panel select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
}
.panel textarea {
  min-height: 280px;
  font-family: 'JetBrains Mono', 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 0.85rem;
}
.panel input:focus,
.panel textarea:focus,
.panel select:focus {
  outline: none;
  border-color: var(--color-accent);
}
.panel .btn {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  margin-right: 10px;
}
.panel .btn.secondary {
  background: rgba(255, 255, 255, 0.12);
}
.panel .btn.danger {
  background: #ef4444;
}
.panel .btn:disabled {
  opacity: 0.6;
  cursor: progress;
}
.panel .row-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.panel table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.panel table th,
.panel table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.panel table th {
  font-weight: 700;
  color: rgba(226, 232, 240, 0.7);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.panel table tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}
.panel .empty {
  text-align: center;
  color: rgba(226, 232, 240, 0.6);
  padding: 30px;
}
.page-list {
  display: grid;
  gap: 10px;
}
.page-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.page-item span {
  font-size: 0.95rem;
}
.page-item small {
  color: rgba(226, 232, 240, 0.55);
  margin-left: 8px;
}
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.admin-toolbar input,
.admin-toolbar select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-family: inherit;
}
.notice-banner {
  background: rgba(243, 147, 35, 0.16);
  border: 1px solid rgba(243, 147, 35, 0.45);
  color: #ffd49b;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

@media (max-width: 800px) {
  .admin-wrap {
    grid-template-columns: 1fr;
  }
  .admin-side {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .admin-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
}