.requests-page {
  width: min(1220px, 100%);
  display: grid;
  gap: 18px;
  color: var(--text);
}

.requests-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
}

.requests-heading h1 {
  margin: 6px 0 7px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.requests-heading p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.request-kicker,
.request-type {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.request-search {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 130px;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(0,0,0,0.34);
}

.request-search input,
.request-search select,
.requests-heading select {
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(0,0,0,0.45);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  padding: 0 12px;
}

.request-search button,
.request-button,
.request-admin-actions button {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  color: #031006;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  padding: 0 14px;
}

.request-status,
.request-empty {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}

.request-card,
.request-admin-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(9,18,18,0.84), rgba(0,0,0,0.58));
  box-shadow: 0 18px 44px rgba(0,0,0,0.24);
  overflow: hidden;
}

.request-card {
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 12px;
}

.request-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(0,0,0,0.45);
}

.request-poster.small {
  width: 72px;
}

.request-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.request-card-body,
.request-admin-main {
  min-width: 0;
}

.request-card h3,
.request-admin-card h3 {
  margin: 5px 0 4px;
  font-size: 18px;
  line-height: 1.08;
}

.request-meta {
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 800;
}

.request-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 54px;
  margin: 10px 0;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  line-height: 1.35;
}

.request-section-title {
  margin: 12px 0 0;
  font-size: 22px;
}

.request-admin-list {
  display: grid;
  gap: 12px;
}

.request-admin-card {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  padding: 12px;
}

.request-admin-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.request-admin-actions button:last-child {
  background: rgba(255,255,255,0.14);
  color: var(--text);
}

@media (max-width: 760px) {
  .request-search,
  .request-card,
  .request-admin-card {
    grid-template-columns: 1fr;
  }

  .request-poster,
  .request-poster.small {
    width: 120px;
  }
}

/* v0.0.175 — requested row and request cache UI */
.request-open-section {
  display: grid;
  gap: 10px;
}

.request-row-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.request-row-actions {
  display: flex;
  gap: 8px;
}

.request-row-actions button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.request-poster-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-behavior: smooth;
}

.request-poster-card {
  flex: 0 0 142px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(9,18,18,0.84), rgba(0,0,0,0.58));
  padding: 10px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

.request-poster-card .request-poster {
  width: 100%;
}

.request-poster-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 950;
}

.request-poster-meta {
  color: rgba(255,255,255,0.56);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.request-poster-status {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* v0.0.184 — admin request lookup panel */
.request-admin-lookup {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.request-lookup-group {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(0,0,0,0.24);
}

.request-lookup-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text);
  font-size: 13px;
}

.request-lookup-label {
  display: grid;
  gap: 5px;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-weight: 850;
}

.request-lookup-label select {
  min-height: 38px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  background: rgba(0,0,0,0.45);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  padding: 0 10px;
}

.request-lookup-results {
  display: grid;
  gap: 8px;
}

.request-lookup-result {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

/* v0.0.187 — clean admin release table */
.request-release-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
}

.request-release-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: 12px;
}

.request-release-table th,
.request-release-table td {
  padding: 9px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  vertical-align: middle;
}

.request-release-table th {
  color: rgba(255,255,255,0.62);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.request-release-title {
  max-width: 520px;
  color: var(--text);
  font-weight: 850;
}

.request-empty-cell {
  color: rgba(255,255,255,0.62);
  text-align: center !important;
}

.request-download-arrow {
  width: 34px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  background: rgba(217,70,239,0.18);
  color: var(--text);
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
}

.request-download-arrow:hover {
  border-color: rgba(217,70,239,0.62);
  background: rgba(217,70,239,0.32);
}


/* v0.0.190 — wider sortable release table and custom download icon */
.request-admin-card {
  width: 100%;
}

.request-admin-lookup {
  width: 100%;
}

.request-lookup-group {
  width: 100%;
}

.request-release-table-wrap {
  width: 100%;
}

.request-release-table {
  width: 100%;
  min-width: 980px;
  table-layout: fixed;
}

.request-release-table th:nth-child(1),
.request-release-table td:nth-child(1) { width: 82px; }
.request-release-table th:nth-child(2),
.request-release-table td:nth-child(2) { width: auto; }
.request-release-table th:nth-child(3),
.request-release-table td:nth-child(3) { width: 92px; }
.request-release-table th:nth-child(4),
.request-release-table td:nth-child(4) { width: 130px; }
.request-release-table th:nth-child(5),
.request-release-table td:nth-child(5) { width: 110px; }
.request-release-table th:nth-child(6),
.request-release-table td:nth-child(6) { width: 76px; text-align: center; }

.request-release-table th[data-request-sort] {
  cursor: pointer;
  user-select: none;
}

.request-release-table th[data-request-sort]::after {
  content: ' ⇅';
  opacity: 0.45;
}

.request-release-table th[data-sort-active="true"][data-sort-direction="asc"]::after {
  content: ' ↑';
  opacity: 1;
}

.request-release-table th[data-sort-active="true"][data-sort-direction="desc"]::after {
  content: ' ↓';
  opacity: 1;
}

.request-release-title {
  max-width: none;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.request-release-download-cell {
  text-align: center;
}

.request-download-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.request-download-arrow img {
  width: 42px;
  height: 42px;
  display: block;
  pointer-events: none;
}

.request-download-arrow:hover {
  background: transparent;
  filter: brightness(1.16);
}


/* v0.0.191 — full-width responsive release table */
.admin-requests-page .request-admin-card {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: start;
}

.admin-requests-page .request-admin-lookup {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

.admin-requests-page .request-lookup-group,
.admin-requests-page .request-release-table-wrap {
  width: 100%;
  max-width: none;
  min-width: 0;
  box-sizing: border-box;
}

.admin-requests-page .request-release-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.admin-requests-page .request-release-table th:nth-child(1),
.admin-requests-page .request-release-table td:nth-child(1) { width: 72px; }
.admin-requests-page .request-release-table th:nth-child(2),
.admin-requests-page .request-release-table td:nth-child(2) { width: auto; }
.admin-requests-page .request-release-table th:nth-child(3),
.admin-requests-page .request-release-table td:nth-child(3) { width: 88px; }
.admin-requests-page .request-release-table th:nth-child(4),
.admin-requests-page .request-release-table td:nth-child(4) { width: 118px; }
.admin-requests-page .request-release-table th:nth-child(5),
.admin-requests-page .request-release-table td:nth-child(5) { width: 92px; }
.admin-requests-page .request-release-table th:nth-child(6),
.admin-requests-page .request-release-table td:nth-child(6) { width: 62px; }

.admin-requests-page .request-release-title {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 760px) {
  .admin-requests-page .request-admin-card {
    grid-template-columns: 1fr;
  }

  .admin-requests-page .request-admin-lookup {
    grid-column: 1;
  }

  .admin-requests-page .request-release-table-wrap {
    overflow-x: visible;
    border: 0;
  }

  .admin-requests-page .request-release-table,
  .admin-requests-page .request-release-table thead,
  .admin-requests-page .request-release-table tbody,
  .admin-requests-page .request-release-table tr,
  .admin-requests-page .request-release-table th,
  .admin-requests-page .request-release-table td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }

  .admin-requests-page .request-release-table thead {
    display: none;
  }

  .admin-requests-page .request-release-table tr {
    margin: 0 0 10px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: rgba(0,0,0,0.22);
  }

  .admin-requests-page .request-release-table td {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .admin-requests-page .request-release-table td:last-child {
    border-bottom: 0;
  }

  .admin-requests-page .request-release-table td::before {
    content: attr(data-label);
    color: rgba(255,255,255,0.58);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .admin-requests-page .request-release-download-cell {
    text-align: left;
  }
}

/* v0.0.697 — Music Requests album thumbnail grid */
.request-grid:has(.request-music-album-card) {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.request-music-album-card {
  grid-template-columns: 1fr;
  padding: 12px;
}

.request-music-album-card .request-album-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
}

.request-music-album-card .request-card-body {
  display: grid;
  gap: 6px;
}

.request-music-album-card h3 {
  min-height: 38px;
  margin-bottom: 0;
}

.request-music-album-card p {
  min-height: 34px;
  -webkit-line-clamp: 2;
  margin: 4px 0 6px;
}

/* v0.0.701 — Ninja Stealth Scan visible page rename */
/* v0.0.700 — Requests TV-friendly dynamic layout */
.requests-page {
  width: min(1760px, calc(100vw - 28px));
  max-width: none;
  gap: clamp(18px, 2vw, 30px);
}

.requests-heading {
  padding-right: clamp(0px, 4vw, 42px);
}

.request-search {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(360px, 1fr) minmax(170px, 230px);
  align-items: center;
  gap: clamp(12px, 1.2vw, 20px);
  padding: clamp(14px, 1.2vw, 22px);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(4,12,18,0.72), rgba(0,0,0,0.48));
  box-shadow: 0 22px 70px rgba(0,0,0,0.26);
}

.request-search-controls {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(120px, 1fr);
  gap: 10px;
  min-width: 0;
}

.request-search input,
.request-search select,
.requests-heading select {
  min-height: clamp(52px, 4.6vw, 70px);
  border-radius: 16px;
  font-size: clamp(16px, 1.15vw, 22px);
  padding: 0 clamp(14px, 1.1vw, 22px);
}

.request-search button,
.request-button,
.request-admin-actions button {
  min-height: clamp(52px, 4.6vw, 70px);
  border-radius: 16px;
  font-size: clamp(16px, 1.12vw, 22px);
}

.request-status,
.request-empty {
  margin-top: -8px;
  font-size: clamp(14px, 1vw, 18px);
}

.request-row-heading {
  margin-top: 4px;
}

.request-row-heading .request-section-title {
  margin-top: 0;
}

.request-row-actions button {
  width: clamp(44px, 3.8vw, 64px);
  height: clamp(44px, 3.8vw, 64px);
  font-size: clamp(24px, 2vw, 34px);
}

.request-grid {
  grid-template-columns: repeat(auto-fill, minmax(clamp(240px, 16vw, 330px), 1fr));
  gap: clamp(16px, 1.5vw, 26px);
}

.request-card {
  grid-template-columns: clamp(112px, 7vw, 150px) minmax(0, 1fr);
  gap: clamp(14px, 1.1vw, 22px);
  padding: clamp(14px, 1.1vw, 22px);
  border-radius: 24px;
}

.request-poster {
  border-radius: 18px;
}

.request-card h3,
.request-admin-card h3 {
  font-size: clamp(20px, 1.35vw, 30px);
  line-height: 1.05;
}

.request-type {
  font-size: clamp(11px, 0.75vw, 15px);
}

.request-meta,
.request-card p {
  font-size: clamp(13px, 0.9vw, 17px);
}

.request-card p {
  min-height: clamp(52px, 3.6vw, 78px);
}

.request-poster-card {
  flex-basis: clamp(170px, 11vw, 230px);
  border-radius: 22px;
  padding: 12px;
}

.request-poster-title {
  font-size: clamp(14px, 0.95vw, 18px);
}

.request-poster-meta,
.request-poster-status {
  font-size: clamp(11px, 0.75vw, 14px);
}

.request-grid:has(.request-music-album-card) {
  grid-template-columns: repeat(auto-fill, minmax(clamp(230px, 15vw, 320px), 1fr));
}

.request-music-album-card {
  min-height: clamp(440px, 31vw, 590px);
  padding: clamp(14px, 1.1vw, 22px);
}

.request-music-album-card .request-album-cover {
  border-radius: 22px;
}

.request-music-album-card h3 {
  min-height: clamp(48px, 3.3vw, 76px);
}

.request-card-in-library {
  opacity: 0.78;
}

.request-button-library,
.request-button-library:disabled {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.74);
  cursor: default;
}

@media (max-width: 980px) {
  .requests-page {
    width: 100%;
  }

  .request-search {
    grid-template-columns: 1fr;
  }

  .request-search-controls {
    grid-template-columns: 1fr 1fr;
  }

  .request-grid,
  .request-grid:has(.request-music-album-card) {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  .request-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .request-search-controls {
    grid-template-columns: 1fr;
  }

  .request-card,
  .request-music-album-card {
    grid-template-columns: 1fr;
  }
}

/* v0.0.703 — Ninja Stealth Scan full-width grid and proper album cards */
.requests-page {
  width: min(1920px, calc(100vw - 28px));
  max-width: none;
  margin: 0 auto;
}

.request-grid {
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(clamp(260px, 15.5vw, 340px), 1fr));
  align-items: stretch;
}

.request-grid:has(.request-music-album-card) {
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(clamp(250px, 15vw, 330px), 1fr));
}

.request-music-album-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  min-height: auto;
  padding: clamp(14px, 1vw, 20px);
}

.request-music-album-card .request-album-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
}

.request-music-album-card .request-album-body {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 8px;
  padding-top: 12px;
  min-height: 0;
}

.request-music-album-card h3 {
  min-height: 0;
  margin: 0;
  font-size: clamp(22px, 1.35vw, 30px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.request-album-year {
  min-height: 1.2em;
  color: rgba(255,255,255,0.72);
  font-size: clamp(15px, 0.9vw, 18px);
  font-weight: 900;
}

.request-music-album-card .request-meta {
  color: rgba(255,255,255,0.56);
  font-size: clamp(13px, 0.82vw, 16px);
  line-height: 1.25;
}

.request-music-album-card .request-library-note {
  min-height: 0;
  margin: 0;
  color: rgba(255,255,255,0.68);
  -webkit-line-clamp: 2;
}

.request-music-album-card .request-button {
  align-self: end;
  width: 100%;
  margin-top: clamp(12px, 1vw, 18px);
}

@media (min-width: 1500px) {
  .request-grid:has(.request-music-album-card) {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  }
}

@media (max-width: 980px) {
  .request-grid,
  .request-grid:has(.request-music-album-card) {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  }
}

.request-staging-status {
  color: rgba(121, 255, 174, 0.9);
  font-weight: 900;
}

.request-staging-path {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  word-break: break-all;
}


/* v0.0.744 — request admin width cleanup and persistent requested button state */
.request-button-requested,
.request-button[data-requested="true"],
.request-button-requested:disabled,
.request-button[data-requested="true"]:disabled {
  background: #2588ff;
  color: #ffffff;
  opacity: 1;
}

.admin-requests-page,
.admin-requests-page .requests-heading,
.admin-requests-page .request-admin-list {
  max-width: 100%;
  min-width: 0;
}

.admin-requests-page .request-admin-card {
  grid-template-columns: 64px minmax(0, 1fr) minmax(150px, 220px);
  align-items: stretch;
  max-width: 100%;
  min-width: 0;
}

.admin-requests-page .request-admin-main,
.admin-requests-page .request-admin-main h3,
.admin-requests-page .request-meta {
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-requests-page .request-admin-actions {
  min-width: 0;
  align-content: center;
}

.admin-requests-page .request-admin-actions button {
  flex: 1 1 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0 10px;
  white-space: normal;
}

.admin-requests-page .request-admin-lookup {
  grid-column: 1 / -1;
  min-width: 0;
  overflow-x: auto;
}

@media (max-width: 1100px) {
  .admin-requests-page .request-admin-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .admin-requests-page .request-admin-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .admin-requests-page .request-admin-actions button {
    flex: 1 1 135px;
  }
}

/* v0.0.747 — My Requests tab and fulfilled popup */
.request-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.request-tabs button {
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(0,0,0,0.42);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  padding: 0 18px;
}

.request-tabs button.active {
  background: #2588ff;
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}

.request-mine-card .request-admin-actions button {
  background: rgba(255,255,255,0.14);
  color: var(--text);
}

.request-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  border-radius: 999px;
  padding: 2px 9px;
  background: rgba(37,136,255,0.22);
  color: #9dccff;
}

.request-status-fulfilled {
  background: rgba(32,255,31,0.18);
  color: #6cff6b;
}

.request-status-denied,
.request-status-removed {
  background: rgba(255,90,90,0.18);
  color: #ff9d9d;
}

.request-fulfilled-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(12px);
}

.request-fulfilled-modal {
  position: relative;
  width: min(880px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(9,26,36,0.98), rgba(0,0,0,0.94));
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  color: var(--text);
  padding: clamp(18px, 3vw, 32px);
}

.request-fulfilled-modal h2 {
  margin: 8px 44px 8px 0;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.request-fulfilled-modal p {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.request-fulfilled-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
}

.request-fulfilled-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.request-fulfilled-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  padding: 10px;
}

.request-fulfilled-card .request-poster {
  width: 74px;
}

.request-fulfilled-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.05;
}

.request-fulfilled-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.request-fulfilled-actions button {
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--accent);
  color: #031006;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  padding: 0 18px;
}

.request-fulfilled-actions button:last-child {
  background: rgba(255,255,255,0.14);
  color: var(--text);
}

@media (max-width: 640px) {
  .request-fulfilled-modal {
    border-radius: 20px;
    padding: 18px;
  }
  .request-fulfilled-grid {
    grid-template-columns: 1fr;
  }
}

/* v0.0.787 — Admin music request thumbnails are square album covers. */
.request-admin-card-music .request-poster.small,
.request-poster.small.request-album-cover {
  width: 76px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}

.request-admin-card-music .request-poster.small img,
.request-poster.small.request-album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* v0.0.789 — Music request download/enrichment progress */
.request-download-progress {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(0,0,0,0.28);
}
.request-download-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.request-download-progress-bar {
  height: 7px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}
.request-download-progress-bar span {
  display: block;
  height: 100%;
  min-width: 4%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 0.25s ease;
}
.request-download-progress-message {
  margin-top: 7px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 800;
}
.request-download-progress-log {
  margin: 8px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  line-height: 1.35;
}
.request-download-progress-log span {
  margin-right: 6px;
  color: var(--accent);
  font-weight: 950;
}

/* v0.0.790 — stable music download progress and persistent log name */
.request-download-progress-file {
  margin-top: 6px;
  font-size: 0.78rem;
  color: rgba(235, 248, 255, 0.72);
  word-break: break-all;
}
