:root {
  --nav-bg: #f8fafc;           /* your header background */
  --nav-text: #0f172a;         /* main text */
  --nav-accent: #16a34a;       /* your primary brand color */
  --nav-accent-hover: #15803d; /* hover color */
  --nav-font: "Your Elementor Font", system-ui, sans-serif;
}

.nav-container {
  max-width: 1200px;  /* set to your theme container width */
  padding: 0 2rem;    /* match Elementor section padding */
}



.responsive-youtube {
  overflow:hidden;
  padding-bottom:56.25%;
  position:relative;
  height:0;
}

.responsive-youtube iframe {
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
}

.navbar-brand .navbar-brand-sticky, .navbar-brand .navbar-brand-transparent {
  width: 90%;
}

#loadingOverlay {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Default (Light Theme) */
[data-bs-theme="light"] .article.mb-9 a {
    color: #007bff; /* Bright blue */
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}

[data-bs-theme="light"] .article.mb-9 a:hover {
    color: #0056b3; /* Darker blue on hover */
    text-decoration: none;
}

[data-bs-theme="light"] .article.mb-9 a:visited {
    color: #6a11cb; /* Purple for visited links */
}

/* Dark Theme */
[data-bs-theme="dark"] .article.mb-9 a {
    color: #66d9ef; /* Light cyan for contrast in dark mode */
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}

[data-bs-theme="dark"] .article.mb-9 a:hover {
    color: #ffcc00; /* Yellow on hover for better visibility */
    text-decoration: none;
}

[data-bs-theme="dark"] .article.mb-9 a:visited {
    color: #ff79c6; /* Pink for visited links */
}

[data-bs-theme="dark"] .text-dark {
  color: white !important;
}

/* External link icon for both themes */
.article.mb-9 a[target="_blank"]::after {
    content: " 🔗"; /* Small icon indicating external link */
    font-size: 0.8em;
    color: inherit;
    margin-left: 3px;
    text-decoration: none;
    display: inline-block;
}

#previewModal .modal-header {
  display: flex;
  justify-content: space-between; /* Aligns title to left and button to right */
  align-items: center; /* Centers items vertically */
}

#previewModal .close {
  font-size: 1.5rem; /* Adjusts close button size */
  line-height: 1;
  padding: 0.5rem;
}

/* Ensure full-screen layout only applies to this modal */
#previewModal .modal-dialog {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
}

#previewModal .modal-content {
  height: 100%;
}

#previewModal .modal-body {
  overflow-y: auto;
}

th {
  text-align: center;
  vertical-align: middle;
}

.ktable {
  text-align: center;
  vertical-align: middle;
}

.postliked {
    color: white;
    background-color: #007bff !important; /* Bootstrap primary color */
}

:root, [data-bs-theme="light"] {
    --bs-form-select-color: black;
    --bs-form-select-bg: white;
}

[data-bs-theme="dark"] {
    --bs-form-select-color: white;
    --bs-form-select-bg: #222; /* Dark background */
}

.form-select {
    color: var(--bs-form-select-color) !important;
    background-color: var(--bs-form-select-bg) !important;
    border: 1px solid var(--bs-border-color, #ccc); /* Default Bootstrap border */
}

.emoji {
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.1s ease-in-out;
}

.emoji:hover {
    transform: scale(1.2);
}

.postcard {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures all cards are equal in height */
}

.postcard img {
    width: 100%;
    height: 400px; /* Set a fixed height for uniformity */
    object-fit: cover; /* Ensures the image fills the area without distortion */
}

.postcard-body {
    flex-grow: 1; /* Ensures the body expands evenly */
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.avatar.xxl {
    width: 96px;
    height: 96px;
}

.large-textarea {
    min-height: 250px; /* Increased min-height */
    max-height: 400px; /* Optional: Limit height */
    resize: vertical;  /* Allow user to resize */
}

@media (max-width: 450px) {
    .navbar-brand img {
        max-width: 60px;
        height: auto;
    }
}

@media (max-width: 450px) {
    header .xnavbar-brand img {
        display: none !important;
    }
}

@media (max-width: 450px) {
    .nav-item a.btn-warning {
        display: none !important;
    }
}

@media (max-width: 375px) {
    .dropdown-toggle.text-body {
        display: none !important;
    }
}

#birthdayMessage {
    font-size: 3em;
    font-weight: bold;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    color: #ff4081;
    text-shadow: 2px 2px 4px #000;
}

.birthdayMessage_header {
    font-size: 3em;
    font-weight: bold;
    color: #ff4081;
    text-shadow: 2px 2px 4px #000;
}

.cake {
    position: fixed;
    width: 50px;
    height: 50px;
    background-image: url('/cake.jpg'); /* Replace with a better cake image https://cdn-icons-png.flaticon.com/128/847/847969.png */
    background-size: cover;
    animation: fall 5s linear infinite;
}

@keyframes fall {
    from { transform: translateY(-100px); opacity: 1; }
    to { transform: translateY(100vh); opacity: 0; }
}

#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* News Ticker */
.news-ticker {
  display: flex;
  align-items: center;        /* vertical centering */
  height: 48px;               /* fixed height */
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  padding-left: 1rem;         /* optional visual padding */
}

.ticker-list {
  display: inline-flex;
  align-items: center;
  animation: ticker 90s linear infinite;
  min-width: max-content;
  height: 100%;
}

.ticker-item {
  padding: 0 15px;
  line-height: 1;              /* prevent vertical spacing issues */
  display: inline-block;
  white-space: nowrap;
}

@keyframes ticker {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

.news-ticker:hover .ticker-list {
  animation-play-state: paused;
}

.news-ticker-boxed {
  display: flex;
  gap: 1rem;
  scroll-behavior: smooth;
}

.news-box {
  flex: 0 0 auto;
  border-color: #ddd;
  padding: 0.5rem 1rem;
  xbackground: #fff;
}

.news-title {
  font-size: 0.95rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-scroll-container {
  display: flex;
  gap: 0.5rem;
  scroll-behavior: smooth;
}

.news-box-item {
  xbackground-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 0.4rem 0.75rem;
  min-width: max-content;
  max-width: 250px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: background-color 0.2s ease;
}

.news-box-item:hover {
  background-color: #e2e6ea;
}

.news-scroll-wrapper {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.news-scroll-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.news-scroll-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.news-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.news-scroll-box {
  background-color: Black;
  color: White;
  border: 1px solid Black;
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  white-space: normal; /* allow wrapping */
  transition: background-color 0.2s ease;
  height: 120px;
  max-width: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.news-scroll-box:hover {
  background-color: #e9ecef;
  color: Black;
}

/* Stars in the background */
.starry-background {
  background: black;
  position: relative;
  overflow: hidden;
}

@keyframes moveStars {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50%, -50%); }
}

/* Bot page */
.btn-black {
  background-color: Black;
  color: Lightgray;
}
.btn-black:hover {
  background-color: Black;
  color: white !important;
}

[data-bs-theme="light"] .btn-blackor {
  background-color: Black;
  color: Lightgray;
}
[data-bs-theme="light"] .btn-blackor:hover {
  background-color: Black;
  color: white !important;
}

[data-bs-theme="dark"] .btn-blackor {
  background-color: White;
  color: Black;
}
[data-bs-theme="dark"] .btn-blackor:hover {
  background-color: Gray;
  color: white !important;
}

#chat-window .user-message {
  color: #198754;
}
#chat-window .bot-message {
  color: #0d6efd;
}
.bot-message, .user-message {
  padding: 12px 16px;
  border-radius: 16px;
  max-width: 100%;
  display: inline-block;
  line-height: 1.4;
  animation: slideIn 0.3s ease-out;
  margin-bottom: 12px;
}
.bot-message {
  background-color: #f1f3f4;
  color: #202124;
  align-self: flex-start;
}

[data-bs-theme="dark"] .bot-message a {
  color: gray;
}

[data-bs-theme="dark"] .bot-message a:hover {
  color: black;
}

.user-message {
  background-color: #d1e7dd;
  color: #0f5132;
  align-self: flex-end;
  text-align: right;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

#main-window .card {
  height: 100%;
}

#chat-window {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

#chatwininputgroup textarea {
  max-height: 150px;
  overflow-y: auto;
}

.input-group {
  align-items: flex-end; /* ensures vertical alignment stays nice */
}

.equal-height-card {
  height: 250px;
  overflow: hidden;
}

table.ftable {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
}

/* First row (header or not) */
.ftable tr:first-child {
  background-color: #000;
  color: #fff;
}

.ftable tr:first-child td {
  text-align: center;
}

/* Alternating row colors */
.ftable tr:nth-child(even):not(:first-child) {
  background-color: #e0f7fa; /* light cyan */
  color: Black;
}

.ftable tr:nth-child(odd):not(:first-child) {
  background-color: #ffe0b2; /* light orange */
  color: Black;
}

/* Cell styling */
.ftable th, .ftable td {
  padding: 12px;
  border: 1px solid #ccc;
  text-align: left;
}

.btn-success {
  background-color: rgb(121, 215, 125);
}

[data-bs-theme="dark"] #user-input {
  color: black;
}

[data-bs-theme="dark"] #user-input::placeholder {
  color: gray;
}

#user-input:focus {
  box-shadow: none !important;
}

.post-body {
  /* max-width: 720px; */
  margin: 0 auto;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
}

.post-body p {
  margin-bottom: 1.2em;
}

.post-h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600; /* Strong but not too bold */
  font-size: 2.25rem; /* About 36px — clean, not shouting */
  line-height: 1.3;   /* Little breathing room between lines */
  letter-spacing: -0.5px; /* Very slight tightening for elegance */
  margin-bottom: 1rem; /* Add breathing space under the title */
}

.post-body ul, .post-body ol {
  padding-left: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.2em;
}

.post-body li {
  margin-bottom: 0.5em;
}

.post-body li p {
  margin: 0 !important;
  display: inline !important;
}

.post-body img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 8px;
}

.post-body p + ul, .post-body p + ol {
  margin-top: -1em;
}

.nav-tabs {
  border-bottom: none;
  justify-content: space-between;
}
.nav-tabs .nav-item {
  flex: 1;
  text-align: center;
}
.nav-tabs .nav-link {
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  border: none;
  border-bottom: 3px solid transparent;
  color: #333;
  background: none;
  width: 100%;
  border-radius: 0;
}
[data-bs-theme="dark"] .nav-tabs .nav-link {
  color: white;
}

[data-bs-theme="dark"] .btn-outline-primary {
  color: white;
}

.nav-tabs .nav-link:hover {
  background-color: rgba(255, 165, 0, 0.1);
}
.nav-tabs .nav-link.active {
  background-color: #feaf2c;
  color: black;
  border-bottom: 3px solid rgba(255, 165, 0, 0.05);
}
.nav-tabs .nav-link-green.active {
  background-color: green;
  color: white;
  border-bottom: 3px solid green;
}
.tab-content .d-flex {
  transition: background 0.2s;
}
/* .tab-content .d-flex:hover {
  background-color: rgba(255, 165, 0, 0.05);
} */
.tab-pane .badge {
  font-size: 0.75rem;
}
.card-img-top.hero-thumb {
  max-height: 650px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}
.category-filters {
  margin: 2rem 0 1rem;
}
.category-filters .btn {
  margin: 0.25rem;
  font-size: 0.9rem;
  border-radius: 20px;
  padding: 0.5rem 1rem;
}
.orange-line {
  height: 3px;
  background-color: #feaf2c;
  margin-bottom: -1px;
}
.green-line {
  height: 3px;
  background-color: green;
  margin-bottom: -1px;
}
.fake-line {
  height: 3px;
  background-color: none;
  margin-bottom: -1px;
}
.card.borderless {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

[data-bs-theme="dark"] .btn.active {
  background-color: transparent;
  color: white;
}

[data-bs-theme="light"] .btn.active {
  background-color: transparent;
  color: blue;
}

.unstyled-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.unstyled-button:focus {
  outline: none;
}

.tab-title {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0;
  margin: 0;
  line-height: 1; /* Important to make it tighter */
}

[data-bs-theme="light"] .btn-homepage-news {
    --bs-btn-color: Black;
    --bs-btn-border-color: Black;

    --bs-btn-hover-color: #080713;
    --bs-btn-hover-bg: #febb4c;
    --bs-btn-hover-border-color: #feb741;
    --bs-btn-focus-shadow-rgb: 217, 150, 40;

    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: Black;
    --bs-btn-active-border-color: #6354ff;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(8, 7, 19, 0.125);
    --bs-btn-disabled-color: #6354ff;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #6354ff;
    --bs-gradient: none;
}

[data-bs-theme="dark"] .btn-homepage-news {
    --bs-btn-color: White;
    --bs-btn-bg: Black;
    --bs-btn-border-color: Black;

    --bs-btn-hover-color: #080713;
    --bs-btn-hover-bg: #febb4c;
    --bs-btn-hover-border-color: #feb741;
    --bs-btn-focus-shadow-rgb: 217, 150, 40;

    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: Black;
    --bs-btn-active-border-color: #6354ff;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(8, 7, 19, 0.125);
    --bs-btn-disabled-color: #6354ff;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #6354ff;
    --bs-gradient: none;
}

.bot-ads {
  max-width: 700px;
  color: #000;
  background: linear-gradient(135deg, #f0f4ff, #e0eaff);
}

.bot-ads img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  margin-right: 15px;
}

.bot-ads-bubble {
  color: #000;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 5px 10px;
  display: inline-block;
  margin-right: 15px;
  min-width: 370px;
}

#icePickerPromo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #000;
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 999;
}

#icePickerPromo button.close-btn {
  position: absolute;
  top: 3px;
  right: 5px;
  border: none;
  background: none;
}

#expertPromo {
  position: fixed;
  bottom: 20px;
  left: 20px;
  color: #000;
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 999;
  max-width: 260px;
}

#expertPromo button.close-btn {
  position: absolute;
  top: 3px;
  right: 5px;
  border: none;
  background: none;
}

@media (max-width: 1600px) {
  #leftpanel-for-big-screens {
    display: none !important;
  }
}

#newsFrame {
  position: fixed;
  top: 100px;
  left: 20px;
  color: #000;
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 999;
  max-width: 260px;
  max-height: 450px;
  overflow: hidden;
  overflow-y: auto;   /* enables vertical scrollbar when needed */
  overflow-x: hidden; /* prevents horizontal scrolling */
}

#newsFrame button.close-btn {
  position: absolute;
  top: 3px;
  right: 5px;
  border: none;
  background: none;
}

.text-blue {
  color: rgb(29, 155, 240);
}

@media (min-width: 1200px) {
    .h1-big-title {
        font-size: 4.0rem;
    }
}

#jump-to-textbox {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 2000;
}

/* New navbar */

:root {
  /* Adjust to match your original design */
  --nav-bg: #ffffff;
  --nav-border: #e5e7eb;
  --nav-text: #111827;
  --nav-text-muted: #6b7280;
  --nav-accent: #2563eb;
  --nav-accent-hover: #1d4ed8;
  --nav-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  --nav-radius: 999px;
  --nav-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-height: 72px;
  --nav-z: 1000;
}

/* Basic reset bits for this component */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--nav-z);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--nav-border);
}

.nav-container {
  max-width: 1200px; /* match your site container width */
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--nav-font);
}

/* Logo */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Primary nav */
.nav-main {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--nav-text);
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.15s ease, transform 0.15s ease;
}

.nav-link:hover {
  color: var(--nav-accent);
  transform: translateY(-1px);
}

.nav-link-ghost {
  font-size: 0.9rem;
  color: var(--nav-text-muted);
}

.nav-link-ghost:hover {
  color: var(--nav-accent);
}

/* Dropdown / mega menu */
.nav-item-has-dropdown > .nav-link {
  cursor: pointer;
}

.nav-caret {
  font-size: 0.75rem;
}

.nav-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.75rem);
  transform: translateX(-50%);
  min-width: 420px;
  padding: 1.25rem 1.5rem;
  background: var(--nav-bg);
  border-radius: 1rem;
  border: 1px solid var(--nav-border);
  box-shadow: var(--nav-shadow);
  display: none;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-dropdown.open {
  display: grid;
}

.nav-dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-dropdown-title {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nav-text-muted);
}

.nav-dropdown-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--nav-text);
  padding: 0.25rem 0;
  border-radius: 0.35rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-link:hover {
  background: #f3f4f6;
  color: var(--nav-accent);
}

/* Right-side actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */
.nav-btn {
  border-radius: var(--nav-radius);
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-btn-primary {
  background: var(--nav-accent);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.nav-btn-primary:hover {
  background: var(--nav-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--nav-border);
  background: #ffffff;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-bar {
  height: 2px;
  width: 18px;
  margin: 0 auto;
  border-radius: 999px;
  background: #111827;
}

/* Mobile menu container */
.nav-mobile {
  display: none;
  background: #ffffff;
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem 1.25rem;
  font-family: var(--nav-font);
}

.nav-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile-item {
  border-bottom: 1px solid #f3f4f6;
}

.nav-mobile-link,
.nav-mobile-sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--nav-text);
}

.nav-mobile-link:hover,
.nav-mobile-sublink:hover {
  color: var(--nav-accent);
}

.nav-mobile-dropdown {
  display: none;
  padding-bottom: 0.5rem;
}

.nav-mobile-dropdown.open {
  display: block;
}

.nav-mobile-sublink {
  padding-left: 0.75rem;
  font-size: 0.9rem;
  color: var(--nav-text-muted);
}

/* Mobile actions */
.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.nav-mobile-link-ghost {
  font-size: 0.9rem;
  color: var(--nav-text-muted);
}

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

/* Responsiveness */
@media (max-width: 900px) {
  .nav-main,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-dropdown {
    left: 0;
    transform: none;
    min-width: 260px;
  }
}
