/*
Theme Name: Balance Fodterapi
Theme URI: https://balancefodterapi.dk
Author: Custom for Balance Fodterapi
Author URI: https://balancefodterapi.dk
Description: Moderne, responsivt WordPress-tema til Balance Fodterapi i Viborg. Baseret på mockup med originalt logo og farver. Inkluderer prisstyring og kontaktformular.
Version: 2.4.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: balance-fodterapi
Tags: custom-menu, featured-images, translation-ready, responsive-layout
*/

/* ==========================================================================
   CSS Variables - Brand Colors (matching mockup + original)
   ========================================================================== */
:root {
  /* EXACT brand colors from user */
  --color-taupe: #9E8B7E;
  --color-cyan: #0DFBDA;
  --color-lime: #97F52F;

  --color-primary: #0DFBDA;
  --color-primary-dark: #0bc4ab;
  --color-primary-light: #e6fffb;
  --color-accent: #97F52F;
  --color-accent-dark: #7acc26;
  --color-dark: #2c2c2c;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f5f3;
  --color-bg-dark: #9E8B7E;
  --color-header: #9E8B7E;
  --color-border: #e8e2dc;
  --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
  --container: 1200px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-dark);
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: #0DFBDA;
  color: #1a1a1a;
}

.btn-primary:hover {
  background: #0bc4ab;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: #0DFBDA;
  border: 2px solid #0DFBDA;
}

.btn-secondary:hover {
  background: #0DFBDA;
  color: #1a1a1a;
}

.btn-accent {
  background: #97F52F;
  color: #1a1a1a;
}

.btn-accent:hover {
  background: #7acc26;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
}

.btn-white:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: #9E8B7E;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo img,
.site-logo .logo-img,
.site-logo .custom-logo {
  height: 72px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .site-logo img,
  .site-logo .logo-img,
  .site-logo .custom-logo {
    height: 52px;
    max-width: 240px;
  }
}

/* Custom logo from Customizer */
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
  color: var(--color-cyan);
  background: rgba(255,255,255,0.15);
}

.header-cta {
  margin-left: 12px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: var(--transition);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f0fafa 0%, #e6f7f7 100%);
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--color-dark);
}

.hero-content h1 .highlight {
  color: #0DFBDA;
}

.hero-content .subtitle {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-taupe);
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 17px;
  color: var(--color-text-light);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #97F52F;
  color: #1a1a1a;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: var(--shadow);
  padding: 10px;
}

/* ==========================================================================
   Features / USP
   ========================================================================== */
.features {
  padding: 50px 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.feature-item {
  padding: 16px 10px;
}

.feature-item .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0DFBDA;
  font-size: 22px;
}

.feature-item h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 13px;
  color: var(--color-text-light);
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.about-quote {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 500;
  margin: 20px 0;
  padding-left: 16px;
  border-left: 3px solid var(--color-primary);
}

/* ==========================================================================
   Treatments / Behandlinger
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.treatment-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.treatment-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.treatment-card .card-body {
  padding: 22px;
}

.treatment-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.treatment-card p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.treatment-card .card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   CTA + Prices
   ========================================================================== */
.cta-prices {
  background: #9E8B7E;
  color: #fff;
  padding: 70px 0;
}

.cta-prices-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.cta-content h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.price-table {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--color-text);
}

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

.price-table th {
  background: #0DFBDA;
  color: #1a1a1a;
  padding: 14px 20px;
  text-align: left;
  font-size: 15px;
}

.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table .price {
  font-weight: 700;
  color: var(--color-primary);
  text-align: right;
  white-space: nowrap;
}

/* ==========================================================================
   Contact + Clinic + Hours
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.contact-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.contact-box h3 {
  font-size: 18px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-box p,
.contact-box li {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.contact-box .address-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

/* Contact Form */
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,180,180,0.15);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 14px;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
}

/* Hours table */
.hours-table {
  width: 100%;
}

.hours-table td {
  padding: 6px 0;
  font-size: 14px;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #9E8B7E;
  color: rgba(255,255,255,0.9);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .site-logo {
  margin-bottom: 16px;
}

.footer-brand .site-logo .logo-text {
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-nav h4,
.footer-contact h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
}

.footer-social a:hover {
  color: #fff;
}

/* ==========================================================================
   Page templates (inner pages)
   ========================================================================== */
.page-header {
  background: linear-gradient(135deg, var(--color-primary-light), #f0fafa);
  padding: 50px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
}

.page-content {
  padding: 60px 0;
}

.page-content .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.6rem;
  margin: 32px 0 12px;
}

.page-content p,
.page-content li {
  margin-bottom: 14px;
  color: var(--color-text-light);
}

.page-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}


/* ==========================================================================
   Price cards – premium / exclusive
   ========================================================================== */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.price-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  color: var(--color-text);
  border: 1px solid rgba(158, 139, 126, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.price-card-header {
  background: linear-gradient(135deg, #9E8B7E 0%, #8a776b 100%);
  color: #fff;
  padding: 28px 28px 24px;
  text-align: center;
  position: relative;
}

.price-card-header::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.price-card-header h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 12px;
  opacity: 0.95;
}

.price-amount {
  font-size: 32px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.5px;
  color: #fff;
}

.price-amount span {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.85;
  margin-left: 2px;
}

.price-items {
  list-style: none;
  padding: 32px 28px 28px;
  margin: 0;
}

.price-items li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.price-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: #0DFBDA;
  border-radius: 50%;
  opacity: 0.9;
  box-shadow: inset 0 0 0 4px #e6fffb;
}

.price-items li:last-child {
  margin-bottom: 0;
  font-size: 13px;
  color: #888;
  font-style: italic;
}

.price-items li:last-child::before {
  background: #9E8B7E;
  box-shadow: inset 0 0 0 4px #f0ebe8;
  opacity: 0.6;
}

/* CTA prices section */
.cta-prices {
  background: linear-gradient(160deg, #9E8B7E 0%, #7d6d62 100%);
  color: #fff;
  padding: 80px 0;
}

.cta-prices .section-header h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
}

.cta-prices .section-header p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
}

/* Improve mobile nav */
@media (max-width: 768px) {
  .site-header {
    position: relative;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .site-logo {
    order: 1;
    flex: 1;
  }

  .main-nav {
    display: none;
    order: 3;
    width: 100%;
    position: static;
    background: #9E8B7E;
    box-shadow: none;
    padding: 0;
    margin-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 12px;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .main-nav a {
    padding: 12px 8px;
    border-radius: 6px;
    color: #fff;
  }

  .main-nav a:hover {
    background: rgba(255,255,255,0.15);
    color: var(--color-cyan);
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 40px 0 50px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-image {
    order: -1;
  }

  .hero-badge {
    width: 90px;
    height: 90px;
    font-size: 11px;
    top: 12px;
    right: 12px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .feature-item {
    padding: 12px 8px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .treatments-grid {
    grid-template-columns: 1fr;
  }

  .cta-prices-inner {
    grid-template-columns: 1fr;
  }

  .price-cards {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section {
    padding: 50px 0;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .price-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}


/* Payment methods */
.payment-methods {
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 24px 0;
  margin: 10px 0 20px;
  text-align: center;
}

.payment-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.9);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.pay-logo {
  height: 40px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
}

.pay-badge i {
  font-size: 16px;
  color: #0DFBDA;
}

.pay-cash {
  background: #fff;
  color: #333;
  border: none;
}

.pay-cash i {
  color: #9E8B7E;
}

.copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* Elementor compatibility */
.elementor-content-wrap,
.elementor-fullwidth {
  width: 100%;
}
.elementor-page .site-main {
  padding: 0;
}
.elementor-page .page-header {
  display: none;
}

/* Flash offer popup */
.balance-flash-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: balanceFlashFade 0.3s ease;
}
.balance-flash-overlay[hidden] {
  display: none !important;
}
@keyframes balanceFlashFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.balance-flash-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 32px 28px 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  text-align: center;
  animation: balanceFlashPop 0.35s ease;
}
@keyframes balanceFlashPop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.balance-flash-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #999;
  cursor: pointer;
}
.balance-flash-close:hover {
  color: #333;
}
.balance-flash-image {
  margin: 0 0 16px;
  border-radius: 12px;
  overflow: hidden;
}
.balance-flash-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
}
.balance-flash-badge {
  display: inline-block;
  background: #97F52F;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.balance-flash-modal h2 {
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: #2c2c2c;
}
.balance-flash-text {
  color: #555;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 12px;
}
.balance-flash-until {
  font-size: 13px;
  color: #9E8B7E;
  font-weight: 600;
  margin: 0 0 20px;
}
.balance-flash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.balance-flash-actions .btn {
  min-width: 120px;
}
