/* ===================================
   WELLNESS CHEK — SHARED STYLESHEET
   WellnessChek.com
=================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #3A6B47;
  --green-dark: #2C5237;
  --green-light:#EAF3EC;
  --gold:       #C8973A;
  --gold-light: #FDF6EC;
  --red:        #C0392B;
  --white:      #FFFFFF;
  --off-white:  #F9F7F4;
  --text-dark:  #2C2C2C;
  --text-mid:   #555555;
  --text-light: #888888;
  --radius:     8px;
  --shadow:     0 4px 16px rgba(0,0,0,0.10);
  --max-width:  1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  color: var(--text-dark);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Georgia', serif;
  line-height: 1.25;
  color: var(--green-dark);
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* --- LAYOUT HELPERS --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

.bg-green      { background: var(--green); }
.bg-green-dark { background: var(--green-dark); }
.bg-green-light{ background: var(--green-light); }
.bg-gold-light { background: var(--gold-light); }
.bg-white      { background: var(--white); }
.bg-off-white  { background: var(--off-white); }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Georgia', serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  text-decoration: none;
  border: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }

.btn-gold  { background: var(--gold);  color: var(--white); }
.btn-green { background: var(--green); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 18px 42px; font-size: 1.1rem; }

/* --- NAVIGATION --- */
.site-nav {
  background: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); text-decoration: none; }
.nav-links .nav-cta a {
  background: var(--gold);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius);
}
.nav-links .nav-cta a:hover { opacity: 0.88; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- HERO --- */
.hero {
  background: var(--green);
  color: var(--white);
  padding: 90px 0 80px;
  text-align: center;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.2;
}
.hero .subhead {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 620px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.88);
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-block;
  margin-top: 32px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-style: italic;
}

/* --- SECTION HEADERS --- */
.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--green-dark);
  margin-bottom: 18px;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto 48px;
}

/* --- FEATURE CARDS (3-col) --- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--green-dark);
}
.card p { font-size: 0.95rem; color: var(--text-mid); }

/* --- LEAD MAGNET BANNER --- */
.lead-magnet {
  background: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 48px 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.lead-magnet-text { flex: 1; }
.lead-magnet-text h2 { color: var(--green-dark); margin-bottom: 12px; font-size: 1.6rem; }
.lead-magnet-text p { color: var(--text-mid); margin-bottom: 24px; }
.lead-magnet-badge {
  flex-shrink: 0;
  background: var(--green);
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
  line-height: 1.3;
}
.lead-magnet-badge .big { font-size: 1.6rem; }

/* --- BOOK FEATURE (2-col) --- */
.book-feature {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}
.book-cover-placeholder {
  background: var(--green);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.book-cover-placeholder .book-title { font-size: 1.5rem; font-weight: bold; }
.book-cover-placeholder .book-subtitle { font-size: 0.9rem; opacity: 0.82; }
.book-cover-placeholder .gold-bar {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 8px auto;
}
.book-cover-placeholder .book-author { font-size: 0.95rem; opacity: 0.75; margin-top: 8px; }
.book-text h2 { font-size: 2rem; margin-bottom: 16px; }
.book-text p { color: var(--text-mid); margin-bottom: 20px; }
.book-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.book-price-note { font-size: 0.9rem; color: var(--text-light); margin-bottom: 24px; }

/* --- ABOUT TEASER --- */
.about-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-photo-placeholder {
  background: var(--green-light);
  border-radius: 12px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-style: italic;
  border: 2px dashed var(--green);
}
.about-text h2 { font-size: 1.9rem; margin-bottom: 16px; }
.about-text p { color: var(--text-mid); margin-bottom: 18px; }

/* --- CHECKLIST --- */
.checklist { list-style: none; margin: 20px 0; }
.checklist li {
  padding: 8px 0 8px 36px;
  position: relative;
  color: var(--text-mid);
  font-size: 0.98rem;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
  font-size: 1.1rem;
}

/* --- DIVIDER --- */
.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 16px auto 32px;
  border-radius: 2px;
}
.divider-left { margin-left: 0; }

/* --- SALES SECTIONS (guide.html) --- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.pain-item {
  background: var(--white);
  border-left: 4px solid var(--green);
  padding: 18px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-size: 0.97rem;
  color: var(--text-mid);
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.inside-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.inside-item h4 { color: var(--green-dark); margin-bottom: 8px; font-size: 1rem; }
.inside-item p { font-size: 0.93rem; color: var(--text-mid); }

.bonus-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bonus-list li {
  background: var(--white);
  padding: 14px 20px 14px 48px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
  font-size: 0.97rem;
}
.bonus-list li::before {
  content: '🎁';
  position: absolute;
  left: 16px;
  top: 14px;
}

.buy-box {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  max-width: 520px;
  margin: 0 auto;
}
.buy-box .price { font-size: 3rem; font-weight: bold; color: var(--green-dark); }
.buy-box .price-label { font-size: 0.9rem; color: var(--text-light); margin-bottom: 8px; }
.buy-box .price-sub { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 28px; }
.buy-box .guarantee {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* --- FAQ ACCORDION --- */
.faq { max-width: 760px; margin: 32px auto 0; }
.faq-item { border-bottom: 1px solid #e0e0e0; padding: 20px 0; }
.faq-q {
  font-weight: bold;
  color: var(--green-dark);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--gold); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 0.97rem;
  color: var(--text-mid);
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 12px; }

/* --- ABOUT PAGE --- */
.about-hero { padding: 80px 0; }
.about-story { max-width: 760px; margin: 0 auto; }
.about-story p { color: var(--text-mid); margin-bottom: 24px; font-size: 1.02rem; }
.about-story h3 { color: var(--green-dark); margin: 32px 0 12px; }
.quote-block {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--gold-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.05rem;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
  font-size: 0.9rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { font-size: 1.2rem; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; }
.footer-col h4 { color: var(--white); margin-bottom: 14px; font-size: 0.95rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  max-width: 700px;
}
.footer-copy { font-size: 0.8rem; white-space: nowrap; }

/* --- RESPONSIVE --- */
@media (max-width: 820px) {
  .cards-3, .inside-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .book-feature, .about-2col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .lead-magnet { flex-direction: column; text-align: center; }
  .lead-magnet-badge { width: 100px; height: 100px; }
  .buy-box { padding: 36px 24px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--green-dark);
    padding: 16px 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .nav-links li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links .nav-cta a { background: none; padding: 0; }
  .nav-toggle { display: flex; }
  .site-nav { position: relative; }
  .hero { padding: 60px 0; }
  .hero-cta-group { flex-direction: column; align-items: center; }
}

/* ===================================================================
   BLOG + ADMIN  (added for the PHP CMS)
=================================================================== */

/* Active nav item */
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ''; display: block; height: 2px; background: var(--gold);
  margin-top: 4px; border-radius: 2px;
}

/* --- Blog listing grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.14); text-decoration: none; }
.blog-card-img {
  height: 180px;
  background: var(--green-light) center/cover no-repeat;
}
.blog-card-img--placeholder {
  background: linear-gradient(135deg, var(--green-light), var(--gold-light));
}
.blog-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-body .article-tag { align-self: flex-start; margin-bottom: 10px; }
.blog-card-body h2 { font-size: 1.15rem; color: var(--green-dark); margin-bottom: 8px; line-height: 1.3; }
.blog-card-body p { font-size: 0.9rem; color: var(--text-mid); flex: 1; margin-bottom: 14px; }
.blog-card-meta { font-size: 0.78rem; color: var(--text-light); font-family: Arial, sans-serif; }

/* --- Single post --- */
.container-narrow { max-width: 760px; }
.post-header { padding: 48px 0 8px; }
.breadcrumb { font-size: 0.82rem; color: var(--text-light); font-family: Arial, sans-serif; margin-bottom: 18px; }
.breadcrumb a { color: var(--text-mid); }
.breadcrumb span { margin: 0 6px; color: var(--text-light); }
.post-tag {
  display: inline-block;
  background: var(--green-light); color: var(--green-dark);
  font-size: 0.75rem; font-family: Arial, sans-serif; font-weight: bold;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px; margin-bottom: 14px;
}
.post-header h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.2; margin-bottom: 16px; }
.post-meta { font-size: 0.9rem; color: var(--text-mid); font-family: Arial, sans-serif; }
.post-meta a { color: var(--green); font-weight: bold; }
.post-updated { font-style: italic; }
.post-hero {
  width: 100%; border-radius: 12px; margin: 28px 0 8px;
  box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 16 / 9;
}
.post-layout { padding-top: 28px; padding-bottom: 16px; }

/* Key takeaways box */
.post-takeaways {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 32px;
}
.post-takeaways h2 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: 10px; }
.post-takeaways ul { margin: 0; padding-left: 20px; }
.post-takeaways li { color: var(--text-dark); margin-bottom: 6px; font-size: 0.97rem; }

/* Table of contents */
.post-toc {
  border-left: 3px solid var(--green-light);
  padding: 4px 0 4px 18px;
  margin-bottom: 28px;
}
.post-toc-title { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-family: Arial, sans-serif; margin-bottom: 8px; }
.post-toc ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.post-toc a { color: var(--text-mid); font-size: 0.92rem; }

/* Post body typography */
.post-body { font-size: 1.08rem; line-height: 1.8; color: var(--text-dark); }
.post-body > * + * { margin-top: 1.1em; }
.post-body h2 { font-size: 1.5rem; color: var(--green-dark); margin-top: 1.8em; }
.post-body h3 { font-size: 1.2rem; color: var(--green-dark); margin-top: 1.5em; }
.post-body p { margin-bottom: 0; }
.post-body a { color: var(--gold); text-decoration: underline; }
.post-body ul, .post-body ol { padding-left: 26px; }
.post-body li { margin-bottom: 8px; }
.post-body img { border-radius: 10px; margin: 1.4em 0; }
.post-body blockquote {
  border-left: 4px solid var(--gold);
  background: var(--gold-light);
  padding: 14px 22px; margin: 1.4em 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--text-dark);
}

.post-cta {
  margin-top: 48px; padding: 32px;
  background: var(--green-light); border-radius: 12px; text-align: center;
}
.post-cta h2 { font-size: 1.3rem; margin-bottom: 8px; }
.post-cta p { color: var(--text-mid); margin-bottom: 20px; }
.post-back { margin-top: 32px; }
.post-back a { color: var(--green); font-weight: bold; }

@media (max-width: 820px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   ADMIN UI
=================================================================== */
.admin-body { background: var(--off-white); font-size: 16px; }

/* Auth screens (login / setup) */
.admin-auth {
  max-width: 380px; margin: 8vh auto; background: var(--white);
  padding: 36px 32px; border-radius: 12px; box-shadow: var(--shadow);
}
.admin-auth h1 { font-size: 1.5rem; margin-bottom: 16px; }
.admin-auth label { display: block; margin-bottom: 14px; font-size: 0.9rem; color: var(--text-mid); font-family: Arial, sans-serif; }
.admin-auth input { width: 100%; margin-top: 6px; }
.admin-auth .btn { width: 100%; margin-top: 8px; }

/* Top bar */
.admin-bar {
  background: var(--green-dark); color: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 60px;
}
.admin-brand { font-weight: bold; }
.admin-brand span { color: var(--gold); }
.admin-bar nav { display: flex; align-items: center; gap: 12px; }
.admin-bar a { color: rgba(255,255,255,0.85); font-size: 0.9rem; }

.admin-main { max-width: 960px; margin: 0 auto; padding: 32px 24px 64px; }
.admin-main h1 { font-size: 1.3rem; margin: 28px 0 12px; }
.admin-editor { max-width: 800px; }

/* Form fields */
.admin-field { display: block; margin-bottom: 18px; font-size: 0.9rem; color: var(--text-mid); font-family: Arial, sans-serif; font-weight: bold; }
.admin-field input[type=text], .admin-field input[type=password], .admin-field textarea, .admin-auth input {
  width: 100%; padding: 10px 12px; margin-top: 6px; font-size: 1rem;
  font-family: 'Georgia', serif; border: 1px solid #ccc; border-radius: var(--radius);
  background: var(--white); color: var(--text-dark);
}
.admin-field input[type=file] { margin-top: 6px; font-family: Arial, sans-serif; }
.admin-field textarea { resize: vertical; }
.admin-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-muted { color: var(--text-light); font-weight: normal; font-size: 0.82rem; }
.admin-thumb img { max-width: 220px; border-radius: var(--radius); margin: 4px 0 18px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.admin-submit { display: flex; gap: 12px; margin-top: 24px; }

/* WYSIWYG */
#editor { background: var(--white); min-height: 320px; font-size: 1.05rem; }
.ql-toolbar.ql-snow, .ql-container.ql-snow { border-color: #ccc; }
.ql-editor { min-height: 320px; font-family: 'Georgia', serif; }

/* Tables */
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-radius: var(--radius); overflow: hidden; }
.admin-table th, .admin-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid #eee; font-size: 0.92rem; vertical-align: top; }
.admin-table th { background: var(--green-light); color: var(--green-dark); font-family: Arial, sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.admin-actions { white-space: nowrap; }

/* Buttons */
.admin-btn {
  display: inline-block; padding: 6px 12px; border-radius: 6px;
  font-size: 0.82rem; font-family: Arial, sans-serif; cursor: pointer;
  background: #eef0ee; color: var(--text-dark); border: 1px solid #d8dcd8;
}
.admin-btn:hover { background: #e2e6e2; text-decoration: none; }
.admin-btn-go { background: var(--green); color: var(--white); border-color: var(--green); }
.admin-btn-danger { background: #fff; color: var(--red); border-color: #e3b7b1; }

/* Notices */
.admin-ok, .admin-error { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 18px; font-family: Arial, sans-serif; font-size: 0.9rem; }
.admin-ok { background: var(--green-light); color: var(--green-dark); }
.admin-error { background: #fbe9e7; color: var(--red); }

@media (max-width: 560px) { .admin-row { grid-template-columns: 1fr; } }
