/* =====================
   ČistáSprcha – style.css
   Monochrome Sophisticated Theme
   MOBILE-FIRST – ONLY FLEXBOX LAYOUTS
   ===================== */

/* ===== CSS RESET & BASE ===== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { font-size: 16px; }
body { 
  background: #fff;
  color: #191919;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: 100%; }
:focus { outline: 2px solid #191919; outline-offset: 0.5px; }

/* ===== VARIABLES ===== */
:root {
  --color-bg: #fff;
  --color-bg-alt: #F6F7F8;
  --color-bgdark: #191919;
  --color-dark: #191919;
  --color-gray-1: #222326;
  --color-gray-2: #474747;
  --color-gray-3: #777;
  --color-light: #f9f9f9;
  --color-border: #dadada;
  --color-shadow: rgba(30,30,30,0.07);
  --brand-primary: #191919;
  --brand-accent: #222;
  --brand-muted: #999;
  --monomatte: #fff;
  --monomatte-alt: #F6F7F8;
  --monochrome-prime: #000;
  --monochrome-sec: #1f1f1f;
  --brand-btn: #191919;
  --brand-btn-txt: #fff;
  --brand-accent-btn: #fff;
  --brand-accent-bg: #222;
}

/* ===== TYPOGRAPHY ===== */
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--color-dark);
  background: var(--color-bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: #111;
  line-height: 1.13;
}
h1 { font-size: 2.25rem; margin-top: 0; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }
h4 { font-size: 1rem; }
p, ul, ol, li, dl, dd, dt { font-size: 1rem; margin-bottom: 16px; }
p:last-child, ul:last-child, ol:last-child, section:last-child { margin-bottom: 0; }
strong, b { color: var(--color-dark); font-weight: bold; }
em, i { color: var(--color-gray-2); }

/* Type scale responsive */
@media (min-width: 600px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.2rem; }
}

/* ===== CONTAINER, SECTIONS, WRAPPERS ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ===== FLEX LAYOUTS per REQUIREMENTS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px var(--color-shadow);
  border: 1px solid var(--color-border);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 36px rgba(20, 20, 20, .08);
  border: 1.5px solid #e7e7e7;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== HEADER & NAVIGATION BAR ===== */
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(40,40,40,.03);
  border-bottom: 1px solid #ededed;
  position: relative;
  z-index: 50;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
}
.header-content img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}
.main-nav a {
  color: var(--color-gray-2);
  font-size: 1rem;
  padding: 6px 0px;
  border-bottom: 2px solid transparent;
  transition: border 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #191919;
  border-bottom: 2px solid #191919;
}
.header-cta {
  background: #191919;
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 32px;
  margin-left: 10px;
  font-size: 1rem;
  border: none;
  box-shadow: 0 2px 16px rgba(25,25,25,0.07);
  transition: background 0.2s, transform 0.16s;
  display: inline-block;
}
.header-cta:hover, .header-cta:focus {
  background: #111;
  color: #fff;
  transform: scale(1.045);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 22px;
  right: 20px;
  height: 44px;
  width: 44px;
  font-size: 2rem;
  background: #fff;
  border: 1.5px solid #191919;
  border-radius: 50%;
  z-index: 120;
  cursor: pointer;
  color: #191919;
  transition: background .15s, box-shadow .15s;
  box-shadow: 0 1px 8px rgba(30,30,30,0.05);
  padding: 0;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #191919;
  color: #fff;
}
@media (min-width: 991px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #f7f7f7;
  box-shadow: 0 4px 48px rgba(0,0,0,0.22);
  z-index: 160;
  padding: 32px 26px 24px 26px;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.5,1.4,.7,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: #191919;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.6rem;
  height: 44px;
  width: 44px;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(25,25,25,0.05);
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: #222; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #111;
  padding: 14px 0 14px 0;
  border-bottom: 1px solid #e3e3e3;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: color 0.17s, background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #111;
  color: #fff;
}

/* Hide desktop nav on mobile */
@media (max-width: 991px) {
  .main-nav, .header-cta {
    display: none;
  }
  .header-content {
    gap: 0px;
  }
}
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-close, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===== HERO & ACCENT SECTIONS ===== */
.hero, .products-hero, .testimonials-hero, .faq-hero, .contact-hero {
  background: #fff;
  padding: 56px 0 40px 0;
  margin-bottom: 28px;
  border-bottom: 2px solid #f2f2f2;
}
.hero h1, .products-hero h1, .testimonials-hero h1, .faq-hero h1, .contact-hero h1 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}
.hero p, .products-hero p, .testimonials-hero p, .faq-hero p, .contact-hero p {
  color: #2a2a2a;
  font-size: 1.14rem;
  max-width: 640px;
}
@media (min-width: 600px) {
  .hero h1, .products-hero h1, .testimonials-hero h1, .faq-hero h1, .contact-hero h1 {
    font-size: 2.7rem;
  }
}

/* ===== CTA BUTTONS ===== */
.cta {
  display: inline-block;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 32px;
  padding: 12px 40px;
  font-size: 1.08rem;
  text-align: center;
  box-shadow: 0 2px 14px var(--color-shadow);
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s, transform 0.13s;
}
.cta.primary {
  background: #191919;
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #000;
  color: #fff;
  transform: scale(1.04);
}
.cta.accent {
  background: #fff;
  color: #191919;
  border: 2px solid #191919;
}
.cta.accent:hover, .cta.accent:focus {
  background: #191919;
  color: #fff;
  transform: scale(1.04);
}

/* ===== ICONS/LISTS INLINE ===== */
ul.benefit-list, ul.service-benefit-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  margin-top: 16px;
  margin-bottom: 0;
  padding-left: 0;
}
ul.benefit-list li, ul.service-benefit-icons li {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3a3a3a;
}
ul.benefit-list img, ul.service-benefit-icons img { height: 28px; width: 28px; }

/* ===== SERVICES, PRODUCT GRIDS ===== */
.products-grid, .service-list-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: flex-start;
}
.products-grid > div, .service-list-detailed > div {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--color-shadow);
  border: 1.5px solid #ededed;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 210px;
  max-width: 340px;
  margin-bottom: 20px;
  align-items: flex-start;
  transition: box-shadow 0.21s, border 0.21s, transform 0.18s;
}
.products-grid > div:hover, .service-list-detailed > div:hover {
  box-shadow: 0 6px 32px rgba(20,20,20,0.12);
  border-color: #d0d0d0;
  transform: translateY(-3px) scale(1.015);
}
.products-grid img, .service-list-detailed img {
  height: 48px;
  width: 48px;
  margin-bottom: 10px;
}
.products-grid h3, .service-list-detailed h3 {
  font-size: 1.17rem;
}
.products-grid ul, .service-list-detailed ul { margin-top: 8px; }

/* ===== PROCESS ICONS ===== */
.process-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
}
.process-icons img { width: 60px; height: 60px; }

/* ===== TESTIMONIALS ===== */
.testimonials, .testimonials-list {
  background: #F6F7F8;
  padding-top: 34px;
  padding-bottom: 34px;
  border-radius: 12px;
}
.testimonial-card {
  background: #fff;
  color: #1b1b1b;
  border-left: 4px solid #191919;
  box-shadow: 0 2px 15px rgba(28,28,28,.07);
  font-size: 1.08rem;
  transition: box-shadow .18s, border .18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 38px rgba(23,23,23,.14);
  border-left: 4px solid #131313;
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  font-style: italic;
  color: #101010;
  margin: 0 0 10px 0;
}
.testimonial-meta {
  font-size: .98rem;
  color: #555;
}
.stars {
  font-family: 'Arial', sans-serif;
  letter-spacing: 2px;
  color: #F5C518;
  font-size: 1.15rem;
  line-height: 1;
}
.testimonial-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  background: #fff;
  border-radius: 9px;
  padding: 14px 20px;
  font-size: 1.08rem;
  color: #181818;
  border: 1px solid #e8e8e8;
}

/***** FAQ *****/
.faq-list, .faq-preview {
  background: #fff;
  border-radius: 12px;
  padding: 34px 22px;
  margin-bottom: 30px;
  box-shadow: 0 2px 16px rgba(35,35,35,0.07);
}
.faq-list dl { margin: 0 0 16px 0; }
.faq-list dt {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #191919;
  margin-bottom: 2px;
}
.faq-list dd {
  color: #444;
  margin-bottom: 16px;
}
.faq-list a { color: #191919; text-underline-offset: 2px; border-bottom: 1.5px solid #191919; transition: color .16s; }
.faq-list a:hover, .faq-list a:focus { color: #fff; background: #191919; }

/***** CONTACT *****/
.contact-cta, .contact-details, .contact-info-block, .address-block, .opening-hours {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(22,22,22,.06);
  padding: 24px 20px;
  margin-bottom: 20px;
}
.contact-info-block > div, .address-block > div, .opening-hours {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #444;
}
.contact-info-block a, .address-block a {
  color: #191919;
  text-decoration: underline;
  transition: color 0.14s;
}
.contact-info-block a:hover, .address-block a:hover { color: #101010; }

/***** FOOTER *****/
footer {
  background: #111;
  color: #fff;
  font-size: .98rem;
  margin-top: 50px;
  padding: 48px 0 0 0;
  border-top: 6px solid #191919;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 32px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #e7e7e7;
  opacity: 0.92;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  border-bottom: 1.5px solid transparent;
  transition: color 0.14s, border 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  border-color: #fff;
}
.footer-contact > div {
  margin-bottom: 3px;
  color: #acacac;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a img { width: 28px; height: 28px; filter: grayscale(1) brightness(1.4); opacity: .58; transition: filter .15s, opacity .18s; }
.footer-social a:hover img, .footer-social a:focus img { filter: none; opacity: 1; }
.copyright {
  color: #777;
  font-size: .93rem;
  margin-top: 18px;
}
@media (min-width: 700px) {
  .footer-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
    justify-content: space-between;
  }
}

/***** POLICY PAGE SECTION *****/
.policy-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(22,22,22,.07);
  padding: 38px 24px;
  margin-bottom: 42px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.policy-section h1, .policy-section h2, .policy-section h3 { color: #101010; }

/***** THANK YOU PAGE *****/
.confirmation {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 12px rgba(30,30,30,.08);
  padding: 40px 24px;
  margin: 36px 0;
}
.next-steps ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
}
.next-steps li { margin-bottom: 10px; }

/***** UTILITY CLASSES & MICROINTERACTIONS *****/
.quality-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 11px 18px;
  background: #f2f2f2;
  border-radius: 6px;
  font-size: .99rem;
  color: #252525;
  box-shadow: 0 1px 8px rgba(25,25,25,0.05);
}
.quality-guarantee img { width: 27px; height: 27px; }

/* === Links === */
a {
  color: #191919;
  border-bottom: 1px solid transparent;
  transition: color 0.16s, border 0.13s;
}
a:hover, a:focus {
  color: #0d0d0d;
  border-bottom: 1px solid #0d0d0d;
}

/***** COOKIES CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #191919;
  color: #fff;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  z-index: 4000;
  font-size: 1rem;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .38s cubic-bezier(.6,1.4,.8,1), opacity .32s;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner__text {
  flex: 1 1 60%;
  margin-right: 16px;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-btn {
  background: #fff;
  color: #191919;
  border-radius: 12px;
  padding: 8px 18px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 0;
  transition: background .15s, color .14s, transform .13s;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(20,20,20,.04);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #191919;
  color: #fff;
  transform: scale(1.04);
}
.cookie-btn.settings {
  border: 2px solid #191919;
  background: #fff;
  color: #191919;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  color: #fff;
  background: #191919;
  border-color: #fff;
}

/***** COOKIES MODAL *****/
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(.9);
  background: #fff;
  color: #191919;
  max-width: 380px;
  width: calc(100vw - 32px);
  box-shadow: 0 6px 52px rgba(0,0,0,0.25);
  border-radius: 16px;
  z-index: 4002;
  padding: 36px 24px 28px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s, transform .33s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.cookie-modal__header h3 {
  font-size: 1.18rem;
  margin-bottom: 0;
}
.cookie-modal__close {
  background: #fff;
  border: none;
  font-size: 1.36rem;
  color: #191919;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: background .13s,color .13s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #191919;
  color: #fff;
}
.cookie-modal__body .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1.07rem;
}
.cookie-modal__body .cookie-switch {
  appearance: none;
  width: 42px;
  height: 22px;
  border-radius: 14px;
  background: #d9d9d9;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.18s;
}
.cookie-modal__body .cookie-switch:checked {
  background: #191919;
}
.cookie-modal__body .cookie-switch:before {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1.5px;
  transition: left .15s;
  box-shadow: 0 1px 6px rgba(25,25,25,0.08);
}
.cookie-modal__body .cookie-switch:checked:before {
  left: 21px;
}
.cookie-modal__save {
  margin-top: 14px;
  width: 100%;
  background: #191919;
  color: #fff;
  border-radius: 12px;
  border: none;
  font-family: 'Montserrat',sans-serif;
  font-weight: bold;
  font-size: 1rem;
  padding: 12px 0;
  cursor: pointer;
  transition: background .14s;
}
.cookie-modal__save:hover, .cookie-modal__save:focus { background: #222; }
.cookie-modal__description { font-size: .93rem; margin-bottom: 10px; color: #888; }

/***** RESPONSIVE (MOBILE-FIRST) *****/
@media (max-width: 991px) {
  .container { max-width: 96vw; }
  .footer-wrapper { flex-direction: column; gap: 22px; }
  .main-nav, .header-cta { display: none; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section, section { padding: 28px 6px 36px 6px; margin-bottom: 36px; }
  .content-grid, .products-grid, .service-list-detailed {
    flex-direction: column;
    gap: 18px;
  }
  .products-grid > div, .service-list-detailed > div { max-width: 97vw; min-width: 0; }
  .text-image-section { flex-direction: column; gap: 20px; }
  .about-summary, .services-overview, .product-highlights, .testimonials, .faq-preview, .contact-cta, .faq-list, .testimonials-list {
    border-radius: 0;
    padding-left: 5px;
    padding-right: 5px;
  }
  .footer-wrapper { gap: 14px; }
  .hero, .products-hero, .testimonials-hero, .faq-hero, .contact-hero { padding: 34px 0 22px 0; }
  .policy-section {
    padding: 28px 7px;
  }
}
@media (max-width: 420px) {
  html { font-size: 14px; }
  .cookie-banner { flex-direction: column; gap: 16px; padding: 16px 6px; }
  .cookie-banner__text { font-size: .98rem; }
}
/**** MICROANIMATIONS ****/
.card, .testimonial-card, .service-list-detailed>div, .products-grid>div { transition: box-shadow 0.18s, transform 0.14s; }
.card:hover, .service-list-detailed>div:hover, .products-grid>div:hover {
  box-shadow: 0 5px 38px rgba(25,25,25,0.11); transform: scale(1.014);
}

/* ===== UTILITY SPACING/MARGIN CLASSES ===== */
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-4 { margin-bottom: 24px !important; }
.mt-4 { margin-top: 24px !important; }

/**** DISABLED/INACTIVE STYLES ****/
[aria-disabled='true'], .is-inactive {
  opacity: 0.65;
  pointer-events: none;
  filter: grayscale(1);
}

/***** SCROLLBAR STYLING *****/
body {
  scrollbar-color: #888 #f3f3f3;
  scrollbar-width: thin;
}
body::-webkit-scrollbar { width: 7px; }
body::-webkit-scrollbar-thumb { background: #888; border-radius: 6px; }

/* ===== END STYLE ===== */
