/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[13].oneOf[7].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[13].oneOf[7].use[5]!./src/components/Ideas.module.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* Ideas.module.scss - Gamified Note-Taking App Style */
/* --- General Container & Title --- */
.Ideas_ideasContainer__dcshf {
  padding: 2rem 1.5rem; /* Adjust padding */
  max-width: 1300px; /* Slightly wider max-width */
  margin: 0 auto;
}

.Ideas_titleContainer__ZUsmV {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem; /* Increased spacing */
  padding-bottom: 1.5rem; /* Increased padding */
  border-bottom: 1px solid var(--border-color-light);
}

.Ideas_title__Fr03d {
  font-size: 2.2rem; /* Slightly larger title */
  font-weight: 700; /* Bolder title */
  color: var(--foreground);
}

.Ideas_addButton___ev_x {
  background-color: var(--accent);
  color: var(--background);
  border: none;
  padding: 0.8rem 1.6rem; /* Slightly larger padding */
  border-radius: var(--border-radius-large); /* Larger radius */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: 600; /* Bolder font */
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.Ideas_addButton___ev_x:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px); /* Add subtle hover effect */
}

.Ideas_addButton___ev_x svg {
  stroke-width: 2.5; /* Thicker icon stroke */
}

/* --- Idea Form Styles (Keep similar, but ensure consistency) --- */
.Ideas_ideaForm__MreRV {
  background-color: var(--background-elevated);
  padding: 2.5rem; /* Increased padding */
  border-radius: var(--border-radius-xl); /* Even larger radius */
  margin-bottom: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.Ideas_ideaForm__MreRV h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--foreground);
  text-align: center; /* Center form title */
}

.Ideas_formGroup__KX7Uv {
  margin-bottom: 1.8rem; /* Increased spacing */
}

.Ideas_formGroup__KX7Uv label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: var(--foreground-muted);
  font-size: 0.9rem;
}

.Ideas_formGroup__KX7Uv input[type=text],
.Ideas_formGroup__KX7Uv textarea {
  width: 100%;
  padding: 0.9rem 1.1rem; /* Adjust padding */
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--background);
  color: var(--foreground);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.Ideas_formGroup__KX7Uv input[type=text]:focus,
.Ideas_formGroup__KX7Uv textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-transparent); /* Slightly larger focus ring */
}

.Ideas_formGroup__KX7Uv textarea {
  resize: vertical;
  min-height: 140px; /* Increased min-height */
}

/* Description + Preview */
.Ideas_descriptionPreviewContainer__a7WjG {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  gap: 2rem; /* Increased gap */
  align-items: stretch;
}

.Ideas_descriptionTextarea__BRE0K textarea {
  min-height: 250px; /* Increased min-height */
  height: 100%;
}

.Ideas_descriptionPreview__YuKBQ label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: var(--foreground-muted);
  font-size: 0.9rem;
}

.Ideas_previewContent__DPvOx {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.9rem 1.1rem;
  background-color: var(--background-hover); /* Slightly different bg for preview */
  min-height: 250px;
  height: 100%;
  overflow-y: auto;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--foreground-secondary);
}

/* Markdown styles within preview (keep existing) */
/* ... existing .previewContent markdown styles ... */
.Ideas_summaryTextarea__tUwo8 {
  min-height: 70px; /* Increased min-height */
}

.Ideas_formActions__jFzFt {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem; /* Increased spacing */
}

.Ideas_cancelButton__30eJ7,
.Ideas_submitButton__Zz2du {
  padding: 0.8rem 1.8rem; /* Adjust padding */
  border-radius: var(--border-radius-large); /* Larger radius */
  cursor: pointer;
  font-weight: 600; /* Bolder font */
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.Ideas_cancelButton__30eJ7:hover,
.Ideas_submitButton__Zz2du:hover {
  transform: translateY(-2px); /* Add subtle hover effect */
}

.Ideas_cancelButton__30eJ7 {
  background-color: transparent;
  color: var(--foreground-muted);
  border: 1px solid var(--border-color);
}

.Ideas_cancelButton__30eJ7:hover {
  background-color: var(--background-hover);
  border-color: var(--border-color-light);
  color: var(--foreground); /* Make text darker on hover */
}

.Ideas_submitButton__Zz2du {
  background-color: var(--primary);
  color: var(--background);
  border: none;
}

.Ideas_submitButton__Zz2du:hover {
  background-color: var(--primary-hover);
}

/* --- Controls Section (Filter, Search, Sort) --- */
.Ideas_controlsContainer__yzIVc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem; /* Row and column gap */
  margin-bottom: 2.5rem; /* Increased spacing */
  /* Optional: Add a subtle top border if desired */
  /* border-top: 1px solid var(--border-color-light); */
  /* padding-top: 1.5rem; */
}

/* Filter Buttons */
.Ideas_filterContainer__moIlu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem; /* Slightly increased gap */
}

.Ideas_filterButton__U8874 {
  padding: 0.6rem 1.2rem; /* Adjust padding */
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-pill); /* Pill shape */
  background-color: var(--background);
  color: var(--foreground-muted);
  cursor: pointer;
  transition: all 0.2s ease-out; /* Smooth transition for all properties */
  font-size: 0.9rem;
  font-weight: 500;
}

.Ideas_filterButton__U8874:hover {
  background-color: var(--background-hover);
  border-color: var(--border-color-light);
  color: var(--foreground);
  transform: translateY(-1px); /* Subtle lift */
}

.Ideas_filterButtonActive__S3PAs {
  background-color: var(--accent);
  color: var(--background);
  border-color: var(--accent);
  font-weight: 600; /* Bolder active filter */
}

.Ideas_filterButtonActive__S3PAs:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* Search and Sort Container */
.Ideas_searchSortContainer__QLF6c {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping within this group */
  gap: 1rem;
  align-items: center;
  /* Removed flex-grow: 1 to let filter container determine width more naturally */
}

.Ideas_searchContainer__IahBa {
  min-width: 200px;
  max-width: 300px; /* Slightly reduced max-width */
}

.Ideas_searchInput__4Wa5p {
  width: 100%;
  padding: 0.7rem 1.1rem; /* Adjust padding */
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large); /* Match button radius */
  background-color: var(--background);
  color: var(--foreground);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.Ideas_searchInput__4Wa5p:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-transparent);
}

.Ideas_searchInput__4Wa5p::placeholder {
  color: var(--foreground-muted);
  opacity: 0.7;
}

.Ideas_sortContainer__Xol7p {
  flex-shrink: 0;
}

.Ideas_sortSelect__2L109 {
  padding: 0.7rem 2.8rem 0.7rem 1.1rem; /* Adjust padding for icon */
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large); /* Match button radius */
  background-color: var(--background);
  color: var(--foreground);
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23${encodeURIComponent(getComputedStyle(document.documentElement).getPropertyValue('--foreground-muted').trim().substring(1))}'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center; /* Adjust icon position */
  background-size: 1.3em; /* Adjust icon size */
}

.Ideas_sortSelect__2L109:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-transparent);
}

/* --- Loading, Error, No Ideas States --- */
.Ideas_loading__nzAFi,
.Ideas_error__DApHu,
.Ideas_noIdeas__40ovd {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem; /* Increased padding */
  text-align: center;
  color: var(--foreground-muted);
  min-height: 250px; /* Increased height */
  border: 2px dashed var(--border-color); /* Thicker dashed border */
  border-radius: var(--border-radius-xl); /* Larger radius */
  margin-top: 2.5rem;
  background-color: var(--background-elevated); /* Subtle background */
}

.Ideas_loading__nzAFi svg,
.Ideas_error__DApHu svg,
.Ideas_noIdeas__40ovd svg {
  margin-bottom: 1.5rem; /* Increased spacing */
  height: 3.5rem; /* Larger icons */
  width: 3.5rem;
  opacity: 0.8; /* Slightly transparent icons */
}

.Ideas_error__DApHu svg {
  color: var(--danger);
}

.Ideas_error__DApHu span {
  color: var(--danger-text);
  font-weight: 500;
}

.Ideas_noIdeas__40ovd p {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* --- Ideas Grid / Card Styles --- */
.Ideas_ideasGrid__pvYye {
  display: grid;
  /* Adjust grid columns for better spacing */
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-gap: 2rem;
  gap: 2rem; /* Increased gap */
  margin-top: 2.5rem;
}

.Ideas_ideaCard__CJAz_ {
  background-color: var(--background-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large); /* Consistent radius */
  padding: 1.8rem; /* Increased padding */
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  position: relative; /* Needed for potential absolute positioning inside */
}

.Ideas_ideaCard__CJAz_:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px var(--shadow-color); /* Enhanced shadow */
  border-color: var(--border-color-light); /* Highlight border on hover */
}

.Ideas_ideaTitle__gLPjy {
  font-size: 1.35rem; /* Slightly larger title */
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.8rem; /* Adjust spacing */
  word-break: break-word;
  line-height: 1.4; /* Improve title readability */
}

.Ideas_ideaSummary__PKDnL {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--foreground-muted);
  margin-bottom: 1.2rem; /* Increased spacing */
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed var(--border-color-light);
  line-height: 1.5;
}

/* PARA Category Tag */
.Ideas_ideaCategory__G8khm {
  display: inline-block;
  padding: 0.3rem 0.8rem; /* Adjust padding */
  border-radius: var(--border-radius-pill); /* Pill shape */
  font-size: 0.7rem; /* Smaller font */
  font-weight: 600; /* Bolder */
  margin-bottom: 1rem; /* Adjust spacing */
  text-transform: uppercase;
  letter-spacing: 0.8px; /* Increase spacing */
  /* Keep specific category colors */
}

/* ... existing .categoryProjects, .categoryAreas, etc. styles ... */
/* Markdown Description */
.Ideas_ideaDescription__0fRmF {
  margin-bottom: 1.5rem; /* Increased spacing */
  font-size: 0.95rem;
  line-height: 1.7; /* Improved line height for readability */
  color: var(--foreground-secondary);
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /* Limit height and add fade effect if desired */
  /* max-height: 200px; */
  /* overflow: hidden; */
  /* position: relative; */
}

/* Optional fade effect for long descriptions */
/* .ideaDescription::after {
  content: '';
  position: absolute;
  bottom: 1.5rem; 
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(transparent, var(--background-elevated));
  pointer-events: none;
} */
/* ... existing .ideaDescription markdown element styles ... */
/* Tag Styles */
.Ideas_tagContainer__0M5yp {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem; /* Increased gap */
  margin-bottom: 1.2rem; /* Adjust spacing */
}

.Ideas_tag__VzWXy {
  background-color: var(--background-hover);
  color: var(--foreground-muted);
  padding: 0.3rem 0.8rem; /* Adjust padding */
  border-radius: var(--border-radius); /* Standard radius */
  font-size: 0.8rem;
  border: 1px solid var(--border-color);
  font-weight: 500; /* Slightly bolder */
}

/* Idea Meta & Actions */
.Ideas_ideaMeta____aCb {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1.2rem; /* Increased spacing */
  border-top: 1px solid var(--border-color-light);
  font-size: 0.85rem;
  color: var(--foreground-muted);
  gap: 0.5rem 1rem; /* Row and column gap */
}

.Ideas_author__zcTeM {
  display: flex;
  align-items: center;
  gap: 0.6rem; /* Increased gap */
}

.Ideas_authorImage__b6TuH {
  width: 28px; /* Larger image */
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-color); /* Add subtle border */
}

.Ideas_authorInitial__Cp_9p {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem; /* Larger initial */
}

.Ideas_date__HR6QD {
  display: flex;
  align-items: center;
  gap: 0.3rem; /* Add gap for icon */
}

.Ideas_date__HR6QD svg {
  flex-shrink: 0; /* Prevent icon shrinking */
}

.Ideas_ideaActions__tjc09 {
  display: flex;
  /* Removed justify-content: flex-end; handled by flex layout */
  gap: 0.5rem; /* Reduced gap between action buttons */
  margin-top: 0; /* Remove top margin, handled by ideaMeta gap */
  margin-left: auto; /* Push actions to the right within the meta flex container */
}

.Ideas_editButton__zS3d3,
.Ideas_deleteButton__KA0_l,
.Ideas_shareButton__DOc2j {
  background: none;
  border: none;
  color: var(--foreground-muted);
  cursor: pointer;
  padding: 0.5rem; /* Uniform padding for icon buttons */
  border-radius: var(--border-radius-round); /* Round buttons */
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center; /* Center icon */
  font-size: 1rem; /* Adjust icon size via font-size */
}

.Ideas_editButton__zS3d3 span, .Ideas_deleteButton__KA0_l span, .Ideas_shareButton__DOc2j span {
  /* Visually hide text but keep for accessibility */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.Ideas_editButton__zS3d3 svg, .Ideas_deleteButton__KA0_l svg, .Ideas_shareButton__DOc2j svg {
  margin-right: 0; /* Remove margin added in JSX */
}

.Ideas_editButton__zS3d3:hover {
  background-color: var(--primary-transparent);
  color: var(--primary);
  transform: scale(1.1);
}

.Ideas_deleteButton__KA0_l:hover {
  background-color: var(--danger-transparent);
  color: var(--danger);
  transform: scale(1.1);
}

.Ideas_shareButton__DOc2j:hover {
  background-color: var(--success-transparent);
  color: var(--success);
  transform: scale(1.1);
}

/* --- Gamification Stats --- */
.Ideas_gamificationStats__Y1B8G {
  display: flex; /* Changed to flex */
  flex-wrap: wrap; /* Allow wrapping */
  gap: 1.5rem; /* Consistent gap */
  background-color: var(--background-elevated);
  padding: 1.5rem; /* Adjust padding */
  border-radius: var(--border-radius-xl); /* Large radius */
  margin-bottom: 2.5rem; /* Increased spacing */
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}

/* Individual stat item (Ideas Count, Points) */
.Ideas_statItem__05Xqi {
  flex: 1 1 180px; /* Flex grow, shrink, basis */
  display: flex;
  align-items: center;
  gap: 1.2rem; /* Increased gap */
  padding: 1.2rem; /* Increased padding */
  background-color: var(--background);
  border-radius: var(--border-radius-large); /* Consistent radius */
  border: 1px solid var(--border-color-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.Ideas_statItem__05Xqi:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.Ideas_statIcon__rmobO {
  font-size: 2rem; /* Larger icon */
  color: var(--accent);
  flex-shrink: 0;
  background-color: var(--accent-transparent); /* Add background to icon */
  padding: 0.6rem; /* Padding around icon */
  border-radius: 50%; /* Make icon background circular */
  display: flex; /* Center icon within background */
  align-items: center;
  justify-content: center;
}

/* Specific icon colors if needed */
/* .statItem:nth-child(1) .statIcon { color: var(--primary); background-color: var(--primary-transparent); } */
/* .statItem:nth-child(2) .statIcon { color: var(--success); background-color: var(--success-transparent); } */
.Ideas_statValue__nebXP {
  display: block;
  font-size: 1.8rem; /* Larger value */
  font-weight: 700; /* Bolder value */
  color: var(--foreground);
  line-height: 1.2;
}

.Ideas_statLabel__aF_PX {
  font-size: 0.85rem;
  color: var(--foreground-muted);
  margin-top: 0.1rem; /* Fine-tune spacing */
}

/* Badges Section */
.Ideas_badgesSection__iNlGI {
  flex: 1 1 100%; /* Take full width on its row */
  padding: 1.2rem; /* Increased padding */
  background-color: var(--background);
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-color-light);
  display: flex; /* Use flex for better alignment */
  flex-direction: column; /* Stack label and badges */
}

.Ideas_badgesSection__iNlGI .Ideas_statLabel__aF_PX { /* Style label within badges */
  margin-bottom: 0.8rem; /* Space below label */
  font-weight: 500;
}

.Ideas_badgesContainer__4F6Vi {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem; /* Increased gap */
}

.Ideas_badgeItem__BPKMQ {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; /* Slightly larger */
  height: 44px;
  background-color: var(--background-elevated);
  border-radius: 50%;
  border: 1px solid var(--border-color);
  cursor: default;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative; /* For potential tooltips */
}

.Ideas_badgeItem__BPKMQ:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.Ideas_badgeIcon__Mmuml {
  font-size: 1.6rem; /* Larger icon */
}

.Ideas_noBadges__6ruuN {
  font-size: 0.9rem;
  color: var(--foreground-muted);
  font-style: italic;
  padding: 0.5rem 0;
}

/* Progress Section */
.Ideas_progressSection__PXwfo {
  flex: 1 1 100%; /* Take full width on its row */
  padding: 1.2rem;
  background-color: var(--background);
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-color-light);
}

.Ideas_progressSection__PXwfo .Ideas_statLabel__aF_PX { /* Style label within progress */
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.Ideas_progressBarContainer__HbNfp {
  width: 100%;
  height: 10px; /* Thicker bar */
  background-color: var(--background-hover);
  border-radius: var(--border-radius-pill); /* Pill shape */
  overflow: hidden;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}

.Ideas_progressBarFill__um_L_ {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: var(--border-radius-pill);
  transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1); /* Smoother transition */
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); /* Subtle inner shadow */
}

.Ideas_progressLabel__m_W2L {
  font-size: 0.8rem;
  color: var(--foreground-muted);
  text-align: right;
  display: block;
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
  .Ideas_ideasContainer__dcshf {
    padding: 1.5rem 1rem;
  }
  .Ideas_titleContainer__ZUsmV {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    /* Allow title and button to stack if needed */
    flex-wrap: wrap;
    gap: 1rem;
  }
  .Ideas_title__Fr03d {
    font-size: 1.8rem;
  }
  .Ideas_addButton___ev_x {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }
  .Ideas_descriptionPreviewContainer__a7WjG {
    grid-template-columns: 1fr; /* Stack preview below textarea */
  }
  .Ideas_descriptionTextarea__BRE0K textarea, .Ideas_previewContent__DPvOx {
    min-height: 180px; /* Adjust height for stacked view */
  }
  .Ideas_ideasGrid__pvYye {
    grid-template-columns: 1fr; /* Single column grid */
    gap: 1.5rem;
  }
  .Ideas_formActions__jFzFt {
    flex-direction: column-reverse; /* Stack buttons */
    gap: 0.8rem;
  }
  .Ideas_formActions__jFzFt button {
    width: 100%; /* Full width buttons */
  }
  .Ideas_controlsContainer__yzIVc {
    gap: 1rem; /* Adjust gap */
  }
  .Ideas_searchSortContainer__QLF6c {
    flex-wrap: wrap; /* Allow search/sort to wrap */
    justify-content: flex-start; /* Align to start */
    width: 100%; /* Take full width */
  }
  .Ideas_searchContainer__IahBa {
    max-width: none; /* Allow search to take more space */
    flex-grow: 1;
  }
  .Ideas_sortContainer__Xol7p {
    width: 100%; /* Full width sort */
  }
  .Ideas_sortSelect__2L109 {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .Ideas_ideaMeta____aCb {
    flex-direction: column; /* Stack meta items */
    align-items: flex-start; /* Align items to start */
    gap: 0.8rem;
  }
  .Ideas_ideaActions__tjc09 {
    margin-left: 0; /* Remove left margin */
    width: 100%; /* Full width actions */
    justify-content: flex-end; /* Push buttons to end */
  }
  .Ideas_date__HR6QD {
    width: 100%; /* Make date take full width */
    justify-content: flex-end; /* Push date text to the right */
  }
  .Ideas_statItem__05Xqi {
    flex-basis: 100%; /* Full width stat items */
  }
}
/* Utility class for hiding text accessibly (already applied to action buttons) */
.Ideas_visuallyHidden__kLU63 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[13].oneOf[7].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[13].oneOf[7].use[5]!./src/components/Navbar.module.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ===== Sixma Navbar — minimalist, brand-aligned ===== */
.Navbar_navbar__x0iE6 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  background: rgba(5, 8, 16, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@media (max-width: 640px) {
  .Navbar_navbar__x0iE6 {
    height: 56px;
  }
}

.Navbar_navbarScrolled__nDLuj {
  background: rgba(5, 8, 16, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.Navbar_navbarContainer__Cz5Jf {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
}
@media (max-width: 640px) {
  .Navbar_navbarContainer__Cz5Jf {
    padding: 0 1rem;
  }
}

.Navbar_navbarContent__LkCjB {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

/* ─── Logo ─── */
.Navbar_navbarLogo__eTBJ_ {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.Navbar_logoIcon__yVeOz {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .Navbar_logoIcon__yVeOz {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }
}

.Navbar_logoIconText__A_p1N {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  font-family: ui-sans-serif, system-ui, sans-serif;
}
@media (max-width: 640px) {
  .Navbar_logoIconText__A_p1N {
    font-size: 0.85rem;
  }
}

.Navbar_logoTextContainer__PcTje {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.Navbar_logoTitle___z1e_ {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.15em;
}
@media (max-width: 640px) {
  .Navbar_logoTitle___z1e_ {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }
}

.Navbar_logoSubtitle__fpIHA {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
@media (max-width: 640px) {
  .Navbar_logoSubtitle__fpIHA {
    display: none;
  }
}

/* ─── Desktop menu ─── */
.Navbar_desktopMenu__0dumr {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .Navbar_desktopMenu__0dumr {
    display: flex;
  }
}

.Navbar_navLinks__DR77m {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.Navbar_menuLink__WRDOQ {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.2s ease;
}
.Navbar_menuLink__WRDOQ::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.Navbar_menuLink__WRDOQ:hover {
  color: rgba(255, 255, 255, 0.95);
}
.Navbar_menuLink__WRDOQ:hover::after {
  width: 100%;
}

.Navbar_menuLinkActive__5y47s {
  color: rgba(255, 255, 255, 0.95);
}
.Navbar_menuLinkActive__5y47s::after {
  width: 100%;
  background: #6f42c1;
}

.Navbar_divider__R3OQx {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

/* ─── Auth buttons (desktop) ─── */
.Navbar_authButtons__YRs_P {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.Navbar_loginButton__KdlDf {
  padding: 0.5rem 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.Navbar_loginButton__KdlDf:hover {
  color: rgb(255, 255, 255);
}

.Navbar_btnPrimary__XRIim {
  padding: 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #050810;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-block;
  white-space: nowrap;
}
.Navbar_btnPrimary__XRIim:hover {
  background: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.15);
}

/* ─── User dropdown ─── */
.Navbar_dropdownContainer__MisQB {
  position: relative;
}

.Navbar_userButton__YK1q7 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.75rem 0.35rem 0.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.Navbar_userButton__YK1q7:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.Navbar_avatar__4mgU5 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4059e7, #6f42c1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.Navbar_avatarInitial__wBJk4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
}

.Navbar_username__v_hJo {
  font-size: 0.82rem;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.Navbar_dropdownArrow__9EA1_ {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.Navbar_userDropdown__GkJso {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 180px;
  background: rgba(10, 14, 26, 0.98);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transform-origin: top right;
}

.Navbar_dropdownMenu__r5Nm3 {
  display: flex;
  flex-direction: column;
  padding: 0.35rem;
}

.Navbar_dropdownItem__2xfB_ {
  padding: 0.6rem 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 6px;
  transition: all 0.15s ease;
  cursor: pointer;
}
.Navbar_dropdownItem__2xfB_:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.Navbar_dropdownDivider__0Sk7Q {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0.35rem 0;
}

.Navbar_dropdownItemDanger__3z2Xq {
  padding: 0.6rem 0.85rem;
  background: none;
  border: none;
  color: rgba(220, 53, 69, 0.85);
  font-family: inherit;
  font-size: 0.85rem;
  text-align: left;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.Navbar_dropdownItemDanger__3z2Xq:hover {
  background: rgba(220, 53, 69, 0.1);
  color: rgb(220, 53, 69);
}

/* ─── Mobile button ─── */
.Navbar_mobileMenu__b1RGt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .Navbar_mobileMenu__b1RGt {
    display: none;
  }
}

.Navbar_mobileMenuButton___FPFk {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease;
}
.Navbar_mobileMenuButton___FPFk:hover, .Navbar_mobileMenuButton___FPFk:active {
  background: rgba(255, 255, 255, 0.08);
}

.Navbar_menuIcon__5aXdb {
  width: 20px;
  height: 20px;
}

/* ─── Mobile panel ─── */
.Navbar_mobilePanel__m1_j0 {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(5, 8, 16, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.Navbar_mobilePanelContent__S6h76 {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1rem 1.25rem;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.Navbar_mobileNavLink__EnuBG {
  padding: 0.95rem 0.25rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Navbar_mobileNavLink__EnuBG:active {
  color: white;
  padding-left: 0.6rem;
}
.Navbar_mobileNavLink__EnuBG::after {
  content: "→";
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.Navbar_mobileNavLinkActive__pid_b {
  color: white;
}
.Navbar_mobileNavLinkActive__pid_b::after {
  color: rgba(138, 118, 229, 0.9);
  transform: translateX(4px);
}

.Navbar_mobileAuthSection__iTjYx {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 0.75rem;
}

.Navbar_mobileAuthButtons__IOcjK {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.Navbar_mobileAuthButtons__IOcjK > * {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-sizing: border-box;
}

.Navbar_mobileLoginButton__vNmG8 {
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.Navbar_mobileLoginButton__vNmG8:active {
  background: rgba(255, 255, 255, 0.05);
}

.Navbar_mobileUserMenu__MQi7g {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.Navbar_mobileMenuItem__YRMwa {
  padding: 0.85rem 0.25rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.Navbar_mobileMenuItem__YRMwa:active {
  color: white;
}

.Navbar_mobileMenuItemDanger__sJ4Fq {
  padding: 0.85rem 0.25rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(220, 53, 69, 0.85);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
