/* =========================================================
   1. CORE DESIGN SYSTEM & THEME VARIABLES
========================================================= */

:root {
  /* Surface & Background Colors */
  --bg: var(--bs-tertiary-bg);
  --card: var(--bs-body-bg);

  /* Typography Colors */
  --text: var(--bs-body-color);
  --muted: var(--bs-secondary-color);

  /* Borders & Radii */
  --border: var(--bs-border-color);
  --radius: 16px;
  --radius-sm: 12px;

  /* Shadows */
  --shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.12);

  /* Brand Colors */
  --primary: var(--bs-primary);

  /* NEW: Stratadeets Brand Orange (Rich & deep for Light Mode) */
  --brand-orange: #c2410c;
}

/* Dark Mode Fine-Tuning */
[data-bs-theme="dark"] {
  --shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.6);

  /* NEW: Stratadeets Brand Orange (Bright & vibrant for Dark Mode) */
  --brand-orange: #f97316;
}

/* NEW: Custom text utility to use in your HTML */
.text-brand-orange {
  color: var(--brand-orange) !important;
}


/* =========================================================
   2. BASE LAYOUT & TYPOGRAPHY
========================================================= */

html, body {
  height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Flex Container Sticky Footer Helper */
.content-wrapper,
.content {
  flex: 1;
}

/* Headings & Text Links */
h1, h2, h3, h4, h5, h6,
.section-title,
.section-header {
  color: var(--text);
  font-weight: 600;
}

.text-muted {
  color: var(--muted) !important;
}

a, u {
  text-decoration: none;
}

/* Section Header Utilities */
.section-header {
  font-size: 1.25rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title {
  font-size: 1.25rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 2px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}


/* =========================================================
   3. GLOBAL BUTTONS & BADGES
========================================================= */

/* Global Button Sizing & Alignment */
.btn {
  border-radius: 50rem; /* Pill shape */
  padding-left: 1rem;
  padding-right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.btn-icon {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* Feature Badge System */
.badge-overlay {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0.5rem;
  z-index: 2;
}

.badge-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid transparent;
  white-space: nowrap;
}

/* Feature Badge Color Variants */
.badge-feature-neutral {
  background: var(--bs-tertiary-bg);
  color: var(--bs-secondary-color);
  border-color: var(--bs-secondary-border-subtle);
}

.badge-feature-warning {
  background: var(--bs-warning-bg-subtle);
  color: var(--bs-warning-text-emphasis);
  border-color: var(--bs-warning-border-subtle);
}

.badge-feature-primary {
  background: var(--bs-primary-bg-subtle);
  color: var(--bs-primary-text-emphasis);
  border-color: var(--bs-primary-border-subtle);
}

.badge-feature-success {
  background: var(--bs-success-bg-subtle);
  color: var(--bs-success-text-emphasis);
  border-color: var(--bs-success-border-subtle);
}

.badge-feature-danger {
  background: var(--bs-danger-bg-subtle);
  color: var(--bs-danger-text-emphasis);
  border-color: var(--bs-danger-border-subtle);
}

/* Pill Component */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bs-secondary-bg);
  color: var(--bs-body-color);
  border: 1px solid var(--bs-border-color);
  max-width: 100%;
}


/* =========================================================
   SECTION HEADER ICON BADGES
========================================================= */
.header-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Brand Orange (Notices / Primary Highlights) */
.header-icon-orange,
.header-icon-brand {
  background-color: rgba(249, 115, 22, 0.12);
  color: var(--brand-orange); /* Now uses your adaptive variable */
}

/* Primary Blue / Indigo (Documents, General Sections) */
.header-icon-blue,
.header-icon-primary {
  background-color: var(--bs-primary-bg-subtle, rgba(13, 110, 253, 0.12));
  color: var(--bs-primary);
}

/* Soft Purple (Polls) */
.header-icon-purple {
  background-color: rgba(111, 66, 193, 0.12);
  color: #8c57ff;
}

/* Soft Teal (Events) */
.header-icon-teal {
  background-color: rgba(13, 202, 240, 0.12);
  color: #0dcaf0;
}

/* Emerald Green (Amenities / Facilities) */
.header-icon-emerald {
  background-color: rgba(25, 135, 84, 0.12);
  color: #20c997;
}
/* =========================================================
   COUNTER BADGE SYSTEM (THEME-ADAPTIVE)
========================================================= */

.badge-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.725rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  min-width: 1.25rem;
  white-space: nowrap;
}

/* Neutral variant (Default for dropdowns & tabs) */
.badge-counter-neutral {
  background-color: var(--bs-tertiary-bg);
  color: var(--bs-secondary-color);
  border: 1px solid var(--bs-border-color-translucent);
}

/* Subtle Danger variant (Only if explicitly needed) */
.badge-counter-danger {
  background-color: var(--bs-danger-bg-subtle);
  color: var(--bs-danger-text-emphasis);
  border: 1px solid var(--bs-danger-border-subtle);
}

/* Soft contrast when hovering over dropdown items */
.dropdown-item:hover .badge-counter-neutral,
.dropdown-item:focus .badge-counter-neutral {
  background-color: var(--bs-secondary-bg);
  color: var(--bs-body-color);
}


/* =========================================================
   UNIFIED STATUS BADGES & PILLS
========================================================= */


.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;       /* Fixed padding */
  font-size: 0.75rem;            /* Uniform font size */
  font-weight: 600;
  line-height: 1;                /* Normalizes line-height across elements */
  min-height: 24px;              /* Enforces exact identical height */
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  vertical-align: middle;
}

/* Ensure icons inside status badges don't distort height */
.status-badge i {
  font-size: 0.825rem;
  line-height: 1;
  display: inline-block;
}

/* Status Variants (Auto-Adapts in Light/Dark Mode) */
.status-badge-success {
  background-color: var(--bs-success-bg-subtle);
  color: var(--bs-success-text-emphasis);
  border-color: var(--bs-success-border-subtle);
}

.status-badge-warning {
  background-color: var(--bs-warning-bg-subtle);
  color: var(--bs-warning-text-emphasis);
  border-color: var(--bs-warning-border-subtle);
}

.status-badge-danger {
  background-color: var(--bs-danger-bg-subtle);
  color: var(--bs-danger-text-emphasis);
  border-color: var(--bs-danger-border-subtle);
}

.status-badge-info {
  background-color: var(--bs-info-bg-subtle);
  color: var(--bs-info-text-emphasis);
  border-color: var(--bs-info-border-subtle);
}

.status-badge-neutral {
  background-color: var(--bs-tertiary-bg);
  color: var(--bs-secondary-color);
  border-color: var(--bs-border-color-translucent);
}

.status-badge-brand {
  background-color: rgba(249, 115, 22, 0.12);
  color: var(--brand-orange);
  border-color: rgba(249, 115, 22, 0.25);
}


/* =========================================================
   AUDIENCE BADGE & META SYSTEM
========================================================= */

/* Base Audience Badge / Pill */
.audience-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
}

/* 1. ALL USERS (Neutral / Standard) */
.audience-all {
  background-color: var(--bs-tertiary-bg);
  color: var(--bs-secondary-color);
  border-color: var(--bs-border-color-translucent);
}

/* 2. OWNERS (Priority / Brand Accent) */
.audience-owner {
  background-color: var(--bs-warning-bg-subtle);
  color: var(--bs-warning-text-emphasis);
  border-color: var(--bs-warning-border-subtle);
}

/* 3. RENTERS (Soft Info Blue) */
.audience-renter {
  background-color: var(--bs-info-bg-subtle);
  color: var(--bs-info-text-emphasis);
  border-color: var(--bs-info-border-subtle);
}

/* 4. EXTERNAL (Dark Slate / Structural) */
.audience-external {
  background-color: var(--bs-secondary-bg);
  color: var(--bs-body-color);
  border-color: var(--bs-border-color);
}

/* ---------------------------------------------------------
   META-LINE AUDIENCE EXTENSION (Subtle Text Alignment)
--------------------------------------------------------- */
.meta-line .audience-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Optional contextual icon color highlight inside .meta-line */
.meta-line .audience-owner i { color: var(--bs-warning-text-emphasis); }
.meta-line .audience-renter i { color: var(--bs-info-text-emphasis); }
.meta-line .audience-external i { color: var(--brand-orange); }



/* =========================================================
   SHARED HELP & DEFINITION CARDS (Modal & Help Article)
========================================================= */

.definition-box {
  background-color: var(--bs-tertiary-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-orange);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.definition-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.definition-term {
  color: var(--brand-orange);
  font-weight: 700;
}

.definition-body {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}



/* =========================================================
   4. CARDS & CONTAINER SYSTEMS
========================================================= */

.card {
  border-radius: var(--radius);
}

/* Static Card Base (Used for Details, Forms, Panels) */
.card-modern {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

/* Interactive Card Modifier */
.card-modern.card-hover,
.card-hover,
.hover-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-modern.card-hover:hover,
.card-hover:hover,
.hover-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.content-section {
  background: var(--card);
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--bs-border-radius);
  margin-bottom: 20px;
}

.card-img-soft {
  height: 160px;
  background: var(--bs-tertiary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 2rem;
}


/* =========================================================
   5. NAVIGATION, HEADERS & DROPDOWNS
========================================================= */

/* Navbar Header Link Overrides */
.site-header .navbar-nav .nav-link {
  color: #dbcbd5;
}

.site-header .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

/* Dropdown Container Context */
.site-header .nav-item.dropdown,
.navbar-nav .nav-item.dropdown {
  position: relative !important;
}

/* Round Icon Action Triggers */
.nav-btn-trigger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-btn-trigger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.site-header .nav-btn-trigger {
  color: #dbcbd5;
}

.site-header .nav-btn-trigger:hover {
  color: #ffffff;
}

/* Consolidated Custom Dropdown Menu */
.dropdown-menu-custom {
  min-width: 280px !important;
  max-width: calc(100vw - 24px) !important;
  width: max-content !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-hover) !important;
  border: 1px solid var(--border) !important;
  z-index: 1050;
}

.dropdown-menu-end,
.dropdown-menu-custom.dropdown-menu-end {
  right: 0 !important;
  left: auto !important;
}

.dropdown-menu-custom .dropdown-item {
  border-radius: var(--bs-border-radius-sm, 0.375rem);
  padding: 0.375rem 0.75rem !important;
  font-size: 0.9rem;
  line-height: 1.25 !important;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-menu-custom .dropdown-item i {
  font-size: 1rem;
  width: 1.25rem;
  text-align: center;
}

/* Notification Overlay Badges */
.nav-trigger-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  border: 2px solid var(--card);
  padding: 0.15rem 0.35rem;
  font-size: 0.7rem;
  line-height: 1;
}

/* Hover States for Offcanvas & Dropdowns */
.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link:focus,
.dropdown-menu-custom .dropdown-item:hover,
.dropdown-menu-custom .dropdown-item:focus {
  background-color: var(--bs-tertiary-bg) !important;
  color: var(--bs-primary) !important;
}


/* =========================================================
   6. OFFCANVAS NAV SYSTEM
========================================================= */

.offcanvas .offcanvas-tool {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offcanvas .offcanvas-tool .nav-item,
.offcanvas .offcanvas-tool li {
  width: 100%;
}

.offcanvas .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.offcanvas .dropdown-menu {
  z-index: 2000 !important;
}

.offcanvas .nav-item > .nav-link {
  font-size: 0.95rem;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.offcanvas i {
  font-size: 1.05rem;
}

.offcanvas #task-badge {
  z-index: 2100 !important;
}


/* =========================================================
   7. MESSAGING & THREAD SYSTEM
========================================================= */

/* Message List Cards */
.message-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

/* Chat Bubbles */
.message-bubble {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.message-bubble.incoming {
  background: var(--bs-secondary-bg);
  color: var(--text);
}

.message-bubble.outgoing {
  background: var(--primary);
  color: #ffffff;
  margin-left: auto;
}

.message-meta {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
}

.message-reply-box {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}


/* =========================================================
   8. FILTER PILLS & NAV PILLS
========================================================= */

.nav-pills {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-pills::-webkit-scrollbar {
  display: none;
}

.nav-pills .nav-link,
.filter-pill {
  white-space: nowrap;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--bs-secondary-color);
  background-color: var(--bs-tertiary-bg);
  border: 1px solid var(--bs-secondary-border-subtle);
  padding: 0.45rem 0.85rem;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.nav-pills .nav-link:hover,
.filter-pill:hover {
  border-color: var(--bs-secondary);
  background-color: var(--bs-body-bg);
}

.nav-pills .nav-link.active,
.filter-pill.active {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #ffffff;
}

.nav-pills .nav-link.active .custom-badge {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

.tab-label {
  white-space: nowrap;
}

.custom-badge {
  font-size: 0.8rem;
  padding: 0.2rem 0.45rem;
}

/* Active state contrast for badges inside nav pills */
.nav-pills .nav-link.active .badge-counter {
  background-color: rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  border-color: transparent !important;
}

/* =========================================================
   9. FLOATING ACTION BUTTON (FAB)
========================================================= */

.fab-go-bottom {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
}

.fab-go-bottom .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-go-bottom .btn:hover {
  transform: translateY(-2px);
}


/* =========================================================
   10. BRANDING & HERO COMPONENTS
========================================================= */

.brand-name .strata {
  font-family: 'Lobster', cursive;
  font-weight: 700;
  color: var(--bs-emphasis-color);
  letter-spacing: 0.5px;
}

.brand-name .deets {
  font-family: 'Lobster', cursive;
  font-weight: 400;
  font-size: 1.15em;
  margin-left: 2px;
  background: linear-gradient(45deg, #0d6efd, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.5px #0a3d62;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
}

.brand-name:hover .deets {
  background: linear-gradient(45deg, #3b82f6, #0d6efd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.bg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 580px;
  margin: 0;
  background-image: url("/static/base/sdeets1400.872fdced3a1e.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  background-attachment: fixed;
}

.parallax {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
}

.parallax .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}


/* =========================================================
   11. MEDIA & PROFILES
========================================================= */

.profile-img-menu { height: 30px; width: 30px; margin-right: 5px; }
.profile-img-small { height: 30px; width: 30px; }
.profile-img-medium { height: 40px; width: 40px; margin-right: 5px; }
.profile-img-large { height: 125px; width: 125px; margin-right: 5px; }

.article-title { color: var(--text); }
a.article-title:hover { color: #428bca; }
.article-content { white-space: pre-line; }

.article-img {
  height: 50px;
  width: 50px;
  margin-right: 16px;
  border-radius: 50%;
}

.article-metadata {
  padding-bottom: 1px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e3e3e3;
}


/* =========================================================
   12. UTILITY CLASSES & HELPERS
========================================================= */

.bg-steel { background-color: #5f788a; }
.bg-blue { background-color: #5A7EC7; }
.bg-ssprimary { background-color: #Ff6347; }

.footer {
  background-color: #343a40;
  padding: 20px 0;
  flex-shrink: 0;
}

.fakeimg {
  height: 200px;
  background: #aaaaaa;
}

.card-link {
  padding: 0;
}

.alert.error {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.border-left-yellow { border-left: 5px solid var(--bs-warning); }
.border-left-green { border-left: 5px solid var(--bs-success); }

/* Text Clamping Utilities */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meta-line {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.meta-line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta-line.compact {
  gap: 10px;
  font-size: 0.8rem;
}

.meta-line i {
  opacity: 0.7;
}

.name-tooltip {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.image-container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}


/* =========================================================
   13. MEDIA QUERIES & BREAKPOINTS
======================================================== */

@media (max-width: 768px) {
  .fab-go-bottom {
    bottom: 12px;
    right: 12px;
  }

  .fab-go-bottom .label {
    display: none;
  }

  .fab-go-bottom .btn {
    padding: 0.5rem 0.65rem;
    border-radius: var(--radius-sm);
  }

  .fab-go-bottom .btn i {
    margin: 0;
    font-size: 1rem;
  }

  .name-tooltip {
    max-width: 15ch;
  }
}

@media (max-width: 576px) {
  .nav-pills .nav-link {
    padding: 0.4rem 0.75rem;
  }

  .custom-badge {
    font-size: 0.7rem;
  }
}

/* Mobile Dropdown Fix (< 485px) */
@media (max-width: 485px) {
  .site-header .dropdown-menu-end,
  .navbar-nav .dropdown-menu-end,
  .dropdown-menu-custom,
  .dropdown-menu {
    position: fixed !important;
    top: 56px !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 86vw !important;
    max-width: 320px !important;
    min-width: unset !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
    transform: none !important;
  }

  .dropdown-menu-custom .dropdown-item,
  .dropdown-menu .dropdown-item {
    padding: 0.4rem 0.75rem !important;
    font-size: 0.85rem !important;
  }
}

/* =========================================================
   RESPONSIVE VIEW TOGGLE (TOOLBAR)
========================================================= */

/* Hide button text on extra-small screens (< 576px) */
@media (max-width: 575.98px) {
  .toggle-text {
    display: none !important;
  }
  .view-toggle-btn i {
    margin-right: 0 !important;
  }
}


