/* ============================================================
   Farbgrafie Buchungssystem – Branding CSS
   Farben & Schriften von farbgrafie.de
   ============================================================ */

:root {
  color-scheme: light only;
  --brand-dark:  #064734;
  --brand-lime:  #E0FFC2;
  --brand-sage:  #739957;
  --brand-muted: #A1AD95;
  --bg-light:    #F2F2F0;
  --text-gray:   #47464A;
  --white:       #ffffff;
  --radius:      24px;
  --shadow:      0 10px 40px -10px rgba(0,0,0,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-light);
  color: var(--text-gray);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Nav ──────────────────────────────────────────────────── */
.fgb-nav-wrap {
  position: fixed;
  top: 24px; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

.fgb-nav {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
  max-width: 64rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.fgb-nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.fgb-nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
}

.fgb-nav-logo span {
  color: var(--brand-dark);
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.fgb-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.fgb-nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.fgb-nav-links a:hover { color: var(--brand-dark); }

.fgb-nav-cta {
  background: var(--brand-dark);
  color: white !important;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.fgb-nav-cta:hover { background: var(--brand-sage) !important; }

@media (max-width: 768px) {
  .fgb-nav-links { display: none; }
  .fgb-nav-cta { font-size: 0.75rem; padding: 8px 16px; }
}

/* ── Main Content ─────────────────────────────────────────── */
.fgb-main {
  max-width: 64rem;
  margin: 0 auto;
  padding: 120px 24px 60px;
}

/* ── Cards / Bento ────────────────────────────────────────── */
.fgb-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

/* ── Heading Styles ───────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Merriweather', serif;
  color: var(--brand-dark);
}

.fgb-headline {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--brand-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.fgb-subline {
  font-size: 1rem;
  color: var(--text-gray);
  opacity: 0.8;
  margin-bottom: 32px;
}

/* ── Booking Package Badge ────────────────────────────────── */
.fgb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-lime);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 8px;
}

/* ── Calendar ─────────────────────────────────────────────── */
.fgb-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin: 24px 0;
  overflow: hidden; /* prevent rightmost cell bleed */
}

.fgb-cal-header {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-gray);
  opacity: 0.5;
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fgb-cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
  border: 2px solid transparent;
  font-size: 0.875rem;
  font-weight: 600;
  position: relative;
  gap: 2px;
  overflow: visible;
  padding-bottom: 10px; /* Platz für weather-dot */
  min-width: 0; /* prevent grid blowout */
  box-sizing: border-box;
  width: 100%;
}

.fgb-cal-day.available {
  background: var(--white);
  color: var(--brand-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.fgb-cal-day.available:hover,
.fgb-cal-day.available.selected {
  background: var(--brand-dark);
  color: white;
  border-color: var(--brand-dark);
  transform: scale(1.05);
}

.fgb-cal-day.unavailable {
  background: transparent;
  color: var(--text-gray);
  opacity: 0.3;
  cursor: not-allowed;
}

.fgb-cal-day .weather-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  /* SVG data URI verhindert Überschreibung durch Chrome forced dark mode */
  background-color: transparent;
  background-size: cover;
  background-repeat: no-repeat;
  forced-color-adjust: none;
}

.weather-dot.ideal {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Ccircle cx='4' cy='4' r='4' fill='%2322c55e'/%3E%3C/svg%3E");
}
.weather-dot.good {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Ccircle cx='4' cy='4' r='4' fill='%2384cc16'/%3E%3C/svg%3E");
}
.weather-dot.ok {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Ccircle cx='4' cy='4' r='4' fill='%23f59e0b'/%3E%3C/svg%3E");
}
.weather-dot.bad {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Ccircle cx='4' cy='4' r='4' fill='%23ef4444'/%3E%3C/svg%3E");
}
.weather-dot.pending {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Ccircle cx='4' cy='4' r='4' fill='%2394a3b8'/%3E%3C/svg%3E");
}
.weather-dot.risk {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Ccircle cx='4' cy='4' r='4' fill='%23dc6b1f'/%3E%3C/svg%3E");
  box-shadow: 0 0 0 2px rgba(220,107,31,.2);
}
.fgb-cal-day.weather-risk {
  border-color:#dc6b1f;
  background:#fff8e7;
}

/* ── Slot List ────────────────────────────────────────────── */
.fgb-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.fgb-slot {
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
}

.fgb-slot:hover,
.fgb-slot.selected {
  border-color: var(--brand-dark);
  background: var(--brand-lime);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,71,52,0.12);
}

.fgb-slot .time {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-dark);
  font-family: 'Merriweather', serif;
}

.fgb-slot .weather-info {
  font-size: 0.75rem;
  color: var(--text-gray);
  opacity: 0.7;
  margin-top: 4px;
}

/* ── Confirm Modal ────────────────────────────────────────── */
.fgb-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.fgb-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.fgb-modal-overlay[hidden] { display: none !important; }

.fgb-modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

.fgb-modal h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.fgb-modal-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9rem;
}

.fgb-modal-detail:last-of-type { border-bottom: none; }

.fgb-modal-detail .icon {
  font-size: 1.1rem;
  width: 24px;
  flex-shrink: 0;
}

.fgb-modal-detail .label {
  color: var(--text-gray);
  opacity: 0.6;
  font-size: 0.75rem;
  line-height: 1.2;
}

.fgb-modal-detail .value {
  font-weight: 600;
  color: var(--brand-dark);
}

.fgb-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--brand-dark);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary:hover { background: var(--brand-sage); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled,
.btn-primary.is-disabled {
  background: #d1d5db;
  color: #6b7280;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.fgb-terms-gate {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fafafa;
  padding: 12px;
  margin: 14px 0;
}

.fgb-terms-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.fgb-terms-head strong {
  display: block;
  color: var(--brand-dark);
  font-size: 0.82rem;
  line-height: 1.35;
}

.fgb-terms-head a {
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.fgb-terms-scroll {
  height: min(56vh, 560px);
  min-height: 360px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: white;
  padding: 14px;
  color: var(--text-gray);
}

.fgb-terms-scroll h4,
.fgb-terms-scroll h5 {
  font-family: 'Merriweather', serif;
  color: var(--brand-dark);
  line-height: 1.25;
}

.fgb-terms-scroll h4 {
  font-size: 1rem;
  margin: 0 0 10px;
}

.fgb-terms-scroll h5 {
  font-size: 0.92rem;
  margin: 18px 0 8px;
}

.fgb-terms-scroll p,
.fgb-terms-scroll li {
  font-size: 0.72rem;
  line-height: 1.55;
  margin-bottom: 8px;
}

.fgb-terms-scroll ol {
  padding-left: 18px;
}

.fgb-terms-table-wrap {
  overflow-x: auto;
  margin: 8px 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
}

.fgb-terms-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  font-size: 0.68rem;
}

.fgb-terms-table th {
  background: rgba(224, 255, 194, 0.65);
  color: var(--brand-dark);
  text-align: left;
  padding: 8px;
  font-weight: 900;
}

.fgb-terms-table td {
  border-top: 1px solid #eef0ec;
  padding: 8px;
  vertical-align: top;
  line-height: 1.45;
}

.fgb-terms-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 10px;
  color: var(--brand-dark);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

.fgb-terms-check.disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.fgb-terms-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--brand-dark);
  flex: 0 0 auto;
}

.fgb-terms-hint {
  color: var(--brand-sage);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 8px;
}

.fgb-terms-actions {
  margin-top: 18px;
}

.btn-secondary {
  background: transparent;
  color: var(--text-gray);
  border: 2px solid #e5e7eb;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  border-color: var(--brand-dark);
  color: var(--brand-dark);
}

/* ── Loading Spinner ──────────────────────────────────────── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Section Labels ───────────────────────────────────────── */
.fgb-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-sage);
  margin-bottom: 12px;
}

/* ── Info Row ─────────────────────────────────────────────── */
.fgb-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.fgb-info-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ── Confirmed Page ───────────────────────────────────────── */
.fgb-confirmed-icon {
  width: 80px; height: 80px;
  background: var(--brand-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

/* ── Footer ───────────────────────────────────────────────── */
.fgb-footer {
  background: var(--white);
  border-top: 1px solid #e5e7eb;
  padding: 64px 24px;
  margin-top: 48px;
}

.fgb-footer-inner {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 640px) {
  .fgb-footer-inner { grid-template-columns: 1fr; }
}

.fgb-footer h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.fgb-footer p {
  font-size: 0.875rem;
  color: var(--text-gray);
  opacity: 0.7;
  line-height: 1.7;
  max-width: 360px;
}

.fgb-footer a {
  font-size: 0.875rem;
  color: var(--text-gray);
  opacity: 0.8;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s, opacity 0.2s;
}

.fgb-footer a:hover { color: var(--brand-dark); opacity: 1; }

.fgb-footer-bottom {
  max-width: 64rem;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid #f3f4f6;
  font-size: 0.75rem;
  color: var(--text-gray);
  opacity: 0.5;
}

/* ── No Slots Message ─────────────────────────────────────── */
.fgb-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-gray);
  opacity: 0.6;
}

.fgb-empty .icon { font-size: 3rem; margin-bottom: 12px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .fgb-main { padding: 120px 16px 40px; }
  .fgb-card { padding: 24px 16px; }
  .fgb-modal { padding: 28px 20px; }
  .fgb-calendar { gap: 4px; }
  .fgb-cal-day { font-size: 0.75rem; border-radius: 8px; }
  .fgb-modal-actions { flex-direction: column; }
}

/* ── Day label in calendar ────────────────────────────────── */
.fgb-cal-day .day-num { font-size: 0.875rem; font-weight: 700; }
.fgb-cal-day .day-mon { font-size: 0.6rem; opacity: 0.6; text-transform: uppercase; }

/* ── Unavailable Day Tooltip ──────────────────────────────── */
.fgb-cal-day.unavailable {
  position: relative;
}

.fgb-cal-day.unavailable[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 30, 30, 0.92);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  max-width: 220px;
  white-space: normal;
  text-align: center;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.fgb-cal-day.unavailable[data-tooltip]:hover::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(30, 30, 30, 0.92);
  z-index: 100;
  pointer-events: none;
}

/* ── Weather Explainer Section ────────────────────────────── */
.fgb-weather-explainer {
  background: #f8faf9;
  border-top: 1px solid #e8ede9;
  padding: 64px 24px;
}

.fgb-weather-explainer-inner {
  max-width: 64rem;
  margin: 0 auto;
}

.fgb-weather-explainer-title {
  font-family: 'Merriweather', serif;
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.fgb-weather-explainer-intro {
  font-size: 0.9375rem;
  color: var(--text-gray);
  opacity: 0.75;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.fgb-weather-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.fgb-weather-card {
  background: #fff;
  border: 1px solid #e8ede9;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.fgb-weather-card--blocked {
  background: #fafafa;
  border-color: #e5e7eb;
  opacity: 0.7;
}

.fgb-weather-card-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.fgb-weather-card-label {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.fgb-weather-card-desc {
  font-size: 0.75rem;
  color: var(--text-gray);
  opacity: 0.7;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .fgb-weather-explainer { padding: 40px 16px; }
  .fgb-weather-cards { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile: 480px ────────────────────────────────────────── */
@media (max-width: 480px) {
  .fgb-main { padding: 116px 12px 32px; }
  .fgb-card { padding: 20px 14px; }

  /* Calendar: smaller cells */
  .fgb-calendar { gap: 3px; }
  .fgb-cal-day {
    aspect-ratio: unset;
    min-height: 62px;
    padding: 6px 4px 14px;
    border-radius: 6px;
  }
  .fgb-cal-day .day-num { font-size: 0.8125rem; }
  .fgb-cal-day .day-mon { font-size: 0.55rem; }
  .fgb-cal-day .weather-dot { width: 7px; height: 7px; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); }

  /* Slots: single column */
  .fgb-slots {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .fgb-slot {
    padding: 14px 16px;
    min-height: 44px;
  }

  /* Modal: full-width */
  .fgb-modal {
    max-width: 95vw;
    padding: 24px 16px;
    border-radius: 16px;
  }
  .fgb-modal-actions {
    flex-direction: column;
    gap: 10px;
  }
  .fgb-modal-actions .btn-primary,
  .fgb-modal-actions .btn-secondary {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  /* Weather explainer: 1 column */
  .fgb-weather-cards { grid-template-columns: 1fr; }
}

/* ── Mobile: 360px ────────────────────────────────────────── */
@media (max-width: 360px) {
  .fgb-headline { font-size: 1.375rem; }
  .fgb-cal-day {
    aspect-ratio: unset;
    min-height: 58px;
    padding: 6px 2px 14px;
    font-size: 0.7rem;
  }
  .fgb-cal-day .day-num { font-size: 0.75rem; }
  .fgb-info-row { flex-direction: column; align-items: flex-start; gap: 6px; }
}


/* ═══════════════════════════════════════════════════════════
   Automatisierter Buchungs-Workflow (booking_auto.html)
   ═══════════════════════════════════════════════════════════ */
/* ── SVG Icon base ── */
.ico { display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.ico svg { display:block; }

/* ── Step Progress ── */
.fgb-steps { display:flex; align-items:center; margin-bottom:28px; }
.fgb-step { display:flex; align-items:center; gap:8px; font-size:0.8rem; font-weight:600; color:#bbb; border:0; background:transparent; font-family:inherit; cursor:pointer; padding:0; }
.fgb-step.active { color:#064734; }
.fgb-step.done { color:#739957; }
.fgb-step-num { width:28px; height:28px; border-radius:50%; border:2px solid currentColor; display:flex; align-items:center; justify-content:center; font-size:0.75rem; font-weight:800; flex-shrink:0; }
.fgb-step.active .fgb-step-num { background:#064734; color:white; border-color:#064734; }
.fgb-step.done .fgb-step-num { background:#739957; color:white; border-color:#739957; }
.fgb-step-sep { flex:1; height:2px; background:#e0e0e0; margin:0 8px; }
.fgb-step-sep.done { background:#739957; }

/* ── Guide Banner ── */
.fgb-guide-banner { background:linear-gradient(135deg,#064734 0%,#0a5a42 100%); color:white; border-radius:16px; padding:20px 24px; margin-bottom:24px; }
.fgb-guide-banner h3 { font-family:'Merriweather',serif; font-size:0.9rem; margin-bottom:12px; color:#E0FFC2; letter-spacing:0.01em; }
.fgb-guide-steps-row { display:flex; gap:10px; flex-wrap:wrap; }
.fgb-guide-step { background:rgba(255,255,255,0.1); border-radius:10px; padding:10px 14px; flex:1; min-width:140px; }
.fgb-guide-step-num { font-size:0.62rem; font-weight:800; color:#E0FFC2; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:4px; }
.fgb-guide-step-text { font-size:0.78rem; color:rgba(255,255,255,0.9); line-height:1.45; }
.fgb-guide-note { font-size:0.7rem; color:rgba(255,255,255,0.55); margin-top:12px; line-height:1.5; }
.fgb-guide-toggle { background:none; border:1px solid rgba(255,255,255,0.25); color:rgba(255,255,255,0.6); border-radius:7px; padding:4px 10px; font-size:0.7rem; cursor:pointer; margin-top:10px; display:inline-block; }
.fgb-guide-toggle:hover { background:rgba(255,255,255,0.08); }

/* ── Tooltip ── */
.tip-icon { display:inline-flex; align-items:center; justify-content:center; width:17px; height:17px; background:#e5e7eb; color:#666; border-radius:50%; font-size:0.6rem; font-weight:800; cursor:help; vertical-align:middle; margin-left:5px; flex-shrink:0; position:relative; }
.tip-icon:hover,.tip-icon:focus { background:#064734; color:white; outline:none; }
.tip-popup { position:absolute; z-index:300; background:#111; color:white; font-size:0.72rem; line-height:1.5; padding:9px 13px; border-radius:9px; width:210px; bottom:calc(100% + 7px); left:50%; transform:translateX(-50%); pointer-events:none; opacity:0; transition:opacity 0.12s; font-weight:400; text-align:left; box-shadow:0 4px 20px rgba(0,0,0,0.35); }
.tip-popup::after { content:''; position:absolute; top:100%; left:50%; transform:translateX(-50%); border:5px solid transparent; border-top-color:#111; }
.tip-icon:hover .tip-popup,.tip-icon:focus .tip-popup { opacity:1; }
@media(max-width:480px){ .tip-popup { left:auto; right:-4px; transform:none; } .tip-popup::after { left:auto; right:8px; } }

/* ── Location Cards ── */
.loc-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:16px; align-items:stretch; }
@media(max-width:600px){ .loc-grid { grid-template-columns:1fr; } }
.loc-card { background:linear-gradient(180deg,#fff 0%,#fbfdf9 100%); border:1.5px solid rgba(6,71,52,0.10); border-radius:18px; padding:20px; cursor:pointer; transition:border-color 0.15s,box-shadow 0.15s,transform 0.15s; position:relative; overflow:visible; min-width:0; display:flex; flex-direction:column; }
.loc-card::before { content:""; position:absolute; inset:0; border-radius:18px; pointer-events:none; box-shadow:inset 0 1px 0 rgba(255,255,255,0.9); }
.loc-card:hover { border-color:rgba(115,153,87,0.75); box-shadow:0 14px 34px rgba(6,71,52,0.10); transform:translateY(-1px); }
.loc-card.selected { border-color:#739957; background:linear-gradient(180deg,#f9fff4 0%,#f2faed 100%); box-shadow:0 16px 36px rgba(6,71,52,0.12); }
.loc-card-name { font-family:'Merriweather',serif; font-weight:900; font-size:1rem; color:#064734; margin-bottom:8px; line-height:1.28; padding-right:72px; overflow-wrap:anywhere; }
.loc-card-travel { display:inline-flex;align-self:flex-start;margin:0 0 10px;padding:5px 10px;border-radius:999px;background:#fff4dc;border:1px solid #edc56d;color:#714b00;font-size:.74rem;font-weight:800;line-height:1.25; }
.loc-card-desc { font-size:0.8rem; color:#666; line-height:1.5; margin-bottom:10px; }
.loc-card-meta { display:flex; gap:10px; align-items:flex-start; flex-wrap:wrap; margin:4px 0 16px; flex:1; }
.loc-card-treffpunkt { font-size:0.78rem; color:#6b7280; display:flex; align-items:flex-start; gap:7px; line-height:1.55; overflow-wrap:anywhere; }
.loc-card-treffpunkt svg { flex:0 0 auto; margin-top:2px; }
.loc-card-actions { display:grid; grid-template-columns:minmax(112px,0.9fr) minmax(0,1.7fr); gap:10px; margin-top:auto; }
.loc-card-maps { font-size:0.77rem; color:#064734; font-weight:800; text-decoration:none; display:flex; align-items:center; justify-content:center; gap:5px; border:1px solid rgba(6,71,52,0.12); padding:10px 12px; border-radius:12px; background:rgba(255,255,255,0.72); min-height:44px; line-height:1.25; text-align:center; }
.loc-card-maps:hover { background:#f0fdf4; border-color:rgba(6,71,52,0.30); }
.loc-select-btn { display:flex; align-items:center; justify-content:center; background:#064734; color:white; padding:10px 14px; border-radius:12px; border:0; font:inherit; font-size:0.84rem; font-weight:800; cursor:pointer; transition:background 0.12s,transform 0.12s; text-align:center; letter-spacing:0.01em; min-height:44px; line-height:1.25; }

.fgb-cal-day,.fgb-slot { font-family:inherit; }
.fgb-cal-day:focus-visible,.fgb-slot:focus-visible,.loc-select-btn:focus-visible { outline:3px solid #739957; outline-offset:2px; }
.fgb-cal-day:disabled { cursor:not-allowed; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto !important; }
  *,*::before,*::after { animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important; }
}
.loc-card:hover .loc-select-btn,.loc-card.selected .loc-select-btn { background:#739957; }
.loc-card-info-btn { display:inline-flex; align-items:center; align-self:flex-start; gap:6px; font-family:inherit; font-size:0.75rem; color:#064734; font-weight:800; cursor:pointer; background:#f0fdf4; border:1px solid #d1fae5; border-radius:999px; padding:5px 11px; margin-bottom:10px; user-select:none; }
.loc-card-info-btn:hover,.loc-card-info-btn:focus { background:#e6f8eb; outline:none; border-color:rgba(6,71,52,0.20); }
.loc-info-popup { display:none; background:#14251f; color:white; font-size:0.76rem; font-weight:500; line-height:1.55; padding:12px 14px; border-radius:13px; width:100%; margin:-2px 0 13px; text-align:left; box-shadow:0 10px 24px rgba(6,71,52,0.18); overflow-wrap:anywhere; }
.loc-card.show-info .loc-info-popup { display:block; }
.loc-card-check { position:absolute; top:14px; right:16px; background:#E0FFC2; color:#064734; font-size:0.65rem; font-weight:800; padding:4px 9px; border-radius:999px; display:none; }
.loc-card.selected .loc-card-check { display:block; }
@media(max-width:480px){
  .loc-card { padding:18px 16px; border-radius:17px; }
  .loc-card-name { font-size:1.02rem; padding-right:0; }
  .loc-card-check { top:12px; right:12px; }
  .loc-card-actions { grid-template-columns:1fr; }
  .loc-card-maps,.loc-select-btn { width:100%; }
}

/* ── Package Cards ── */
.pkg-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:14px; }
@media(max-width:600px){ .pkg-grid { grid-template-columns:1fr; } }
.pkg-card { background:white; border:1.5px solid #e5e7eb; border-radius:14px; padding:22px 20px; cursor:pointer; transition:border-color 0.15s,box-shadow 0.15s; text-align:center; position:relative; }
.pkg-card:hover { border-color:#739957; box-shadow:0 4px 16px rgba(6,71,52,0.08); }
.pkg-card.recommended { border-color:#739957; }
.pkg-card.selected { border-color:#064734; background:#f8fdf5; }
.pkg-badge { position:absolute; top:-10px; left:50%; transform:translateX(-50%); background:#064734; color:#E0FFC2; font-size:0.62rem; font-weight:800; padding:3px 12px; border-radius:10px; white-space:nowrap; letter-spacing:0.04em; }
.pkg-icon-wrap { width:48px; height:48px; background:#f0fdf4; border-radius:12px; display:flex; align-items:center; justify-content:center; margin:0 auto 12px; }
.pkg-name { font-family:'Merriweather',serif; font-weight:900; font-size:1rem; color:#064734; margin-bottom:3px; }
.pkg-tagline { font-size:0.75rem; color:#888; margin-bottom:10px; }
.pkg-price { font-size:1.6rem; font-weight:900; color:#064734; margin-bottom:12px; letter-spacing:-0.02em; }
.pkg-feats { list-style:none; text-align:left; font-size:0.78rem; color:#555; display:flex; flex-direction:column; gap:5px; margin-bottom:16px; }
.pkg-feats li { display:flex; gap:6px; align-items:flex-start; }
.pkg-feats li::before { content:''; display:block; width:14px; height:14px; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23739957' d='M13.7 4.3a1 1 0 0 1 0 1.4l-6 6a1 1 0 0 1-1.4 0l-3-3a1 1 0 0 1 1.4-1.4L7 9.6l5.3-5.3a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink:0; margin-top:1px; }
.pkg-select-btn { background:#064734; color:white; border:none; padding:10px 24px; border-radius:9px; font-size:0.85rem; font-weight:700; cursor:pointer; width:100%; transition:background 0.12s; letter-spacing:0.01em; }
.pkg-select-btn:hover { background:#739957; }
.pkg-card.selected .pkg-select-btn { background:#739957; }
.pkg-details-btn { width:100%; border:1px solid rgba(6,71,52,.18); background:white; color:#064734; padding:9px 16px; border-radius:9px; font-size:0.78rem; font-weight:700; cursor:pointer; margin:10px 0 8px; }
.pkg-details-btn:hover { border-color:#064734; }
.fgb-modal-close { position:absolute; top:14px; right:16px; width:34px; height:34px; border:0; border-radius:50%; background:#f3f4f6; color:#064734; font-size:1.4rem; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.fgb-modal-close:hover { background:#e5e7eb; }
.fgb-package-modal { position:relative; max-width:560px; display:flex; flex-direction:column; gap:0; }
.fgb-package-modal h3 { margin:0 40px 16px 0; line-height:1.25; overflow-wrap:anywhere; }
.fgb-package-modal .fgb-modal-actions { position:sticky; bottom:-40px; background:linear-gradient(180deg,rgba(255,255,255,0.72),#fff 42%); padding-top:14px; margin-top:18px; }
.pkg-compare-lead { background:#f0fdf4; border:1px solid #d1fae5; border-radius:14px; padding:13px 14px; color:#064734; font-size:0.84rem; line-height:1.5; margin-bottom:14px; display:flex; flex-direction:column; gap:4px; }
.pkg-compare-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:14px; }
.pkg-compare-metric { border:1px solid #e5e7eb; border-radius:13px; padding:12px; background:#fff; min-width:0; }
.pkg-compare-metric span,.pkg-compare-label { display:block; font-size:0.68rem; color:#739957; font-weight:900; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:4px; }
.pkg-compare-metric strong { display:block; color:#064734; font-size:0.92rem; line-height:1.3; overflow-wrap:anywhere; }
.pkg-compare-metric small { display:block; color:#777; font-size:0.68rem; line-height:1.45; margin-top:7px; overflow-wrap:anywhere; }
.pkg-compare-features { border:1px solid #edf0ea; border-radius:14px; padding:14px; background:#fbfdf9; }
.pkg-compare-features ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.pkg-compare-features li { color:#47464A; font-size:0.78rem; line-height:1.45; display:flex; gap:7px; }
.pkg-compare-features li::before { content:"✓"; color:#739957; font-weight:900; flex:0 0 auto; }
.pkg-compare-note { color:#777; font-size:0.74rem; line-height:1.5; margin-top:12px; }
@media(max-width:480px){
  .fgb-package-modal { max-width:calc(100vw - 24px); max-height:calc(100dvh - 32px); padding:22px 16px 16px; }
  .fgb-package-modal h3 { font-size:1.2rem; margin-right:38px; }
  .fgb-package-modal .fgb-modal-actions { bottom:-16px; }
  .pkg-compare-grid { grid-template-columns:1fr; }
}
.fgb-slot--golden { border-color:#f59e0b; box-shadow:0 4px 16px rgba(245,158,11,.16); position:relative; }
.fgb-slot--golden::before { content:""; position:absolute; left:0; top:10px; bottom:10px; width:4px; border-radius:0 4px 4px 0; background:#f59e0b; }
.fgb-slot-badge { display:inline-flex; margin-left:6px; padding:2px 7px; border-radius:999px; background:#fef3c7; color:#92400e; font-size:.68rem; font-weight:800; vertical-align:middle; }

/* ── Loading spinner ── */
.fgb-loading { text-align:center; padding:48px 24px; color:#888; }
.fgb-loading-spin { width:36px; height:36px; border:3px solid #e0e0e0; border-top-color:#064734; border-radius:50%; animation:spin 0.75s linear infinite; margin:0 auto 14px; }
@keyframes spin { to { transform:rotate(360deg); } }

/* ── Proposal form ── */
.proposal-details { margin-top:14px; border-top:1px solid #f0f0f0; padding-top:14px; }
.proposal-details summary { font-size:0.8rem; color:#064734; font-weight:600; cursor:pointer; padding:6px 0; list-style:none; display:flex; align-items:center; gap:8px; }
.proposal-details summary::before { content:''; display:inline-block; width:16px; height:16px; border:1.5px solid #064734; border-radius:50%; flex-shrink:0; }
.proposal-body { background:#f8f8f8; border-radius:10px; padding:14px 16px; margin-top:10px; }
.proposal-body p { font-size:0.78rem; color:#666; margin-bottom:10px; line-height:1.5; }
.proposal-body label { display:block; margin:4px 0 5px; color:#47464A; font-size:0.72rem; font-weight:700; line-height:1.4; }
.proposal-body input,.proposal-body textarea { width:100%; padding:9px 12px; border:1.5px solid #e0e0e0; border-radius:8px; font-size:0.82rem; margin-bottom:8px; font-family:inherit; }
.proposal-body textarea { resize:vertical; min-height:56px; }
.proposal-submit { background:#064734; color:white; border:none; padding:9px 20px; border-radius:8px; font-size:0.82rem; font-weight:700; cursor:pointer; letter-spacing:0.01em; }
.proposal-success { color:#739957; font-size:0.82rem; font-weight:600; display:none; margin-left:10px; }

/* ── Step panels ── */
.fgb-step-panel { display:none; }
.fgb-step-panel.active { display:block; }

/* ── Back button ── */
.fgb-back-btn { background:none; border:none; color:#064734; font-size:0.82rem; font-weight:600; cursor:pointer; padding:8px 0; margin-bottom:14px; display:flex; align-items:center; gap:5px; letter-spacing:0.01em; }
.fgb-back-btn:hover { text-decoration:underline; }

/* ── Selection summary ── */
.fgb-selection-summary { display:flex; gap:0; flex-wrap:wrap; margin-bottom:18px; background:#f8fdf5; border-radius:9px; border:1px solid #d1fae5; padding:10px 14px; }
.fgb-sel-chip { color:#064734; font-size:0.75rem; font-weight:600; display:flex; align-items:center; gap:5px; margin-right:14px; }
.fgb-sel-chip:last-child { margin-right:0; }
.fgb-sel-sep { width:1px; height:14px; background:#d1fae5; margin-right:14px; align-self:center; flex-shrink:0; }

/* ── Info boxes ── */
.fgb-info-box { background:#f0f9ff; border-left:3px solid #0ea5e9; border-radius:0 9px 9px 0; padding:12px 16px; margin-bottom:16px; font-size:0.78rem; color:#0369a1; line-height:1.55; }
.fgb-info-box strong { color:#075985; }
.fgb-weather-risk-note { background:#fff8e7; border:1px solid #e5a83f; border-left:4px solid #dc6b1f; border-radius:10px; padding:12px 14px; margin:10px 0 16px; font-size:.78rem; line-height:1.55; color:#6f4b08; }
.fgb-weather-risk-note strong { color:#5b3900; }
.fgb-weather-risk-note[hidden] { display:none; }

/* ── Weather legend ── */
.fgb-weather-legend { display:flex; gap:16px; flex-wrap:wrap; margin-top:8px; }
.fgb-wl-item { display:flex; align-items:center; gap:5px; font-size:0.7rem; color:#666; }
.fgb-wl-dot { width:9px; height:9px; border-radius:50%; flex-shrink:0; }

/* ── Label row ── */
.fgb-label-row { display:flex; align-items:center; gap:5px; margin-bottom:4px; }

/* ── Divider icons ── */
.section-icon { width:32px; height:32px; background:#f0fdf4; border-radius:8px; display:inline-flex; align-items:center; justify-content:center; margin-right:8px; flex-shrink:0; vertical-align:middle; }

/* ── Mobile overrides ── */
@media(max-width:640px){
  .fgb-guide-steps-row { gap:8px; }
  .fgb-guide-step { min-width:100%; }
  .fgb-steps span { display:none; }
  .fgb-step { gap:4px; }
}

/* ── No suitable appointment ── */
.fgb-no-match { display:none; align-items:center; justify-content:space-between; gap:18px; background:#fff; border:1.5px solid #dfe5dc; border-left:5px solid #739957; border-radius:14px; padding:17px 18px; margin:4px 0 20px; box-shadow:0 2px 10px rgba(6,71,52,.05); }
.fgb-no-match h3 { color:#064734; font-size:1rem; margin:0 0 4px; }
.fgb-no-match p { color:#666; font-size:.78rem; line-height:1.5; margin:0; }
.fgb-no-match-open { flex:0 0 auto; white-space:nowrap; }
.fgb-no-match-overlay[hidden] { display:none; }
.fgb-no-match-overlay { position:fixed; inset:0; z-index:3000; background:rgba(6,35,28,.66); display:flex; align-items:flex-start; justify-content:center; overflow-y:auto; padding:24px 14px; }
.fgb-no-match-dialog { position:relative; width:min(720px,100%); background:#fff; border-radius:18px; padding:28px; box-shadow:0 24px 70px rgba(0,0,0,.28); margin:auto; }
.fgb-no-match-dialog h2 { color:#064734; font-size:1.35rem; line-height:1.25; padding-right:38px; }
.fgb-no-match-lead { color:#666; font-size:.84rem; line-height:1.55; margin:8px 0 20px; }
.fgb-no-match-close { position:absolute; right:15px; top:14px; width:40px; height:40px; border:0; border-radius:50%; background:#F2F2F0; color:#064734; font-size:1.5rem; cursor:pointer; }
.fgb-no-match-fieldset { border:0; padding:0; display:grid; gap:8px; margin:0 0 18px; }
.fgb-no-match-fieldset legend { font-weight:800; color:#064734; margin-bottom:9px; font-size:.88rem; }
.fgb-no-match-fieldset label,.fgb-no-match-options label { display:flex; align-items:flex-start; gap:9px; font-size:.8rem; line-height:1.4; color:#47464A; cursor:pointer; }
.fgb-no-match-fieldset input,.fgb-no-match-options input { width:18px; height:18px; flex:0 0 auto; accent-color:#064734; }
.fgb-no-match-block { border:1px solid #e5e9e3; border-radius:13px; padding:15px; margin:14px 0; background:#fbfdf9; }
.fgb-no-match-block > strong,.fgb-no-match-block label > strong { color:#064734; font-size:.86rem; }
.fgb-no-match-block > p,.fgb-no-match-block-head p { color:#777; font-size:.72rem; line-height:1.45; margin:4px 0 10px; }
.fgb-no-match-block-head { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.fgb-inline-add { border:1.5px solid #064734; border-radius:8px; color:#064734; background:#fff; padding:7px 10px; font-weight:700; font-size:.74rem; cursor:pointer; white-space:nowrap; }
.fgb-inline-add:disabled { opacity:.4; cursor:not-allowed; }
.fgb-no-match-date-list { display:grid; gap:10px; }
.fgb-no-match-date-row { display:grid; grid-template-columns:1.35fr 1fr 1fr auto auto; gap:8px; align-items:end; padding-top:10px; border-top:1px solid #edf0ea; }
.fgb-no-match-date-row label { display:grid; gap:4px; color:#666; font-size:.68rem; font-weight:700; }
.fgb-no-match-date-row input[type=date],.fgb-no-match-date-row input[type=time] { width:100%; min-height:42px; padding:8px; border:1.5px solid #dfe5dc; border-radius:8px; font:inherit; color:#333; background:#fff; }
.fgb-no-match-date-row .fgb-nm-flex { display:flex; align-items:center; min-height:42px; white-space:nowrap; }
.fgb-nm-flex input { width:18px; height:18px; accent-color:#064734; }
.fgb-nm-remove { width:42px; height:42px; border:0; border-radius:8px; background:#fee2e2; color:#b91c1c; font-size:1.25rem; cursor:pointer; }
.fgb-chip-group { display:flex; flex-wrap:wrap; gap:7px; margin:9px 0; }
.fgb-choice-chip input { position:absolute; opacity:0; pointer-events:none; }
.fgb-choice-chip span { display:inline-flex; min-height:40px; align-items:center; justify-content:center; padding:7px 11px; border:1.5px solid #dfe5dc; border-radius:999px; background:#fff; color:#555; font-size:.75rem; font-weight:700; cursor:pointer; }
.fgb-choice-chip input:checked + span { background:#E0FFC2; border-color:#064734; color:#064734; }
.fgb-choice-chip input:focus-visible + span { outline:3px solid rgba(6,71,52,.25); outline-offset:2px; }
#no-match-comment { width:100%; margin-top:8px; min-height:96px; resize:vertical; padding:11px 12px; border:1.5px solid #dfe5dc; border-radius:9px; font:inherit; line-height:1.5; }
#no-match-comment:focus,.fgb-no-match-date-row input:focus { outline:none; border-color:#064734; box-shadow:0 0 0 3px rgba(6,71,52,.1); }
.fgb-char-count { text-align:right; color:#999; font-size:.68rem; margin-top:3px; }
.fgb-no-match-options { display:grid; gap:10px; margin:16px 0; }
.fgb-no-match-timezone { color:#777; font-size:.72rem; }
.fgb-no-match-notice { background:#fff8e7; border:1px solid #f0c96a; border-radius:10px; padding:12px; color:#6b5218; font-size:.75rem; line-height:1.5; margin:12px 0; }
.fgb-no-match-notice a { color:#064734; font-weight:700; }
.fgb-no-match-error { display:none; background:#fee2e2; border:1px solid #fecaca; color:#991b1b; border-radius:9px; padding:10px 12px; font-size:.78rem; font-weight:700; margin:10px 0; }
.fgb-no-match-actions { display:flex; justify-content:flex-end; gap:10px; margin-top:16px; }
.fgb-no-match-actions .btn-primary,.fgb-no-match-actions .btn-secondary { min-height:46px; }
.fgb-honeypot { position:absolute!important; left:-10000px!important; width:1px!important; height:1px!important; overflow:hidden!important; }
body.fgb-modal-open { overflow:hidden; }
@media(max-width:700px){
  .fgb-no-match { align-items:stretch; flex-direction:column; }
  .fgb-no-match-open { width:100%; justify-content:center; }
  .fgb-no-match-overlay { padding:0; }
  .fgb-no-match-dialog { min-height:100dvh; border-radius:0; padding:22px 16px 28px; }
  .fgb-no-match-date-row { grid-template-columns:1fr 1fr; }
  .fgb-no-match-date-row label:first-child { grid-column:1/-1; }
  .fgb-no-match-date-row .fgb-nm-flex { min-height:40px; }
  .fgb-nm-remove { justify-self:end; }
  .fgb-no-match-actions { position:sticky; bottom:-28px; background:#fff; padding:12px 0 max(12px,env(safe-area-inset-bottom)); margin-top:12px; }
  .fgb-no-match-actions button { flex:1; padding-left:9px; padding-right:9px; }
}
