/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@14.2.15_@opentelemetry+api@1.9.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/.pnpm/next@14.2.15_@opentelemetry+api@1.9.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/styles/songs.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* =========================================================
   Songs layout: sidebar filters (desktop) + modal (mobile)
   ========================================================= */

.songs-layout {
  display: block;
}

.songs-main {
  min-width: 0; /* prevent overflow issues */
}

/* Mobile default */
.filters-sidebar {
  display: none;
}

.filters-modal-trigger {
  display: inline-flex;
}

/* Desktop */
@media (min-width: 1024px) {
  .songs-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }

  .filters-sidebar {
    display: block;
    position: sticky;
    top: 12px;
    max-height: calc(100vh - 24px);
    overflow: auto;
    min-width: 0;
  }

  .filters-modal-trigger {
    display: none;
  }
}
/* ✅ Force white row + black text even in dark/global styles */
.mentionsRow {
  width: 100%;
  text-align: left;
  padding: 10px 12px;

  border-radius: 8px;
  border: 2px solid transparent;

  background: #fff !important;
  color: #000 !important;

  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ✅ Selected: only border (no background change) */
.mentionsRow--active {
  border-color: #000 !important;
}

/* Avatar */
.mentionsRow__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex: 0 0 auto;
}

.mentionsRow__avatarImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.mentionsRow__text {
  min-width: 0;
}

.mentionsRow__name {
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  color: #000 !important;               /* ✅ hard override */
  -webkit-text-fill-color: #000 !important; /* ✅ fixes stubborn white text cases */
}

.mentionsRow__username {
  opacity: 0.75;
  font-size: 12px;

  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}

