/* Musik / Requests (integreret, uden iframe) */

.musikPage{
  padding-top: 10px;
}

.reqShell{
  width: min(var(--siteWidth), 100%);
  margin: 0 auto 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: var(--panel2);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 18px var(--uiGlow);
}

.reqShell__head{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, var(--barTop), var(--barBottom));
}

.reqTitle__h{
  margin: 0;
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.reqTitle__sub{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.62);
}

.reqControls{
  display:flex;
  align-items:center;
  gap: 10px;
}

.reqSearch{
  position: relative;
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  min-width: min(520px, 56vw);
}
.reqSearch__icon{
  color: rgba(255,255,255,0.60);
  font-weight: 900;
}
.reqSearch__input{
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  font-size: 12px;
}
.reqSearch__input::placeholder{ color: rgba(255,255,255,0.45); }
.reqSearch:focus-within{
  border-color: var(--accentBorder);
  box-shadow: 0 0 0 3px var(--accentGlow);
}

.reqShell__body{
  padding: 14px;
}

.reqStatus{
  display:none;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.86);
  font-weight: 800;
  font-size: 12px;
}
.reqStatus.is-info,
.reqStatus.is-ok,
.reqStatus.is-warn,
.reqStatus.is-err{ display:block; }
.reqStatus.is-ok{
  border-color: rgba(44, 208, 122, 0.28);
  background: rgba(44, 208, 122, 0.10);
}
.reqStatus.is-warn{
  border-color: rgba(255, 174, 66, 0.30);
  background: rgba(255, 174, 66, 0.10);
}
.reqStatus.is-err{
  border-color: rgba(255, 52, 92, 0.28);
  background: rgba(255, 52, 92, 0.10);
}

.reqListWrap{
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.12);
  overflow: hidden;
}

.reqListHead{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.12);
}
.reqListHead__left{
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
}
.reqListHead__right{
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,255,255,0.62);
}

.reqList{
  list-style: none;
  margin: 0;
  padding: 6px;
  display:flex;
  flex-direction: column;
  gap: 6px;
}

.reqRow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(8,12,18,0.30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.reqRow__main{ min-width: 0; }
.reqRow__title{
  font-size: 13px;
  font-weight: 1000;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90ch;
}
.reqRow__meta{
  margin-top: 3px;
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90ch;
}
.reqDot{ color: rgba(255,255,255,0.42); padding: 0 6px; }

.reqRow__actions{
  flex: 0 0 auto;
}

.reqBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  font-weight: 1000;
  cursor:pointer;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease, color .15s ease;
}
.reqBtn:hover{
  transform: translateY(-1px);
  border-color: var(--accentBorder);
  color: var(--accentHi);
  box-shadow: 0 0 0 3px var(--accentGlow);
}
.reqBtn:disabled{
  opacity: 0.6;
  cursor:not-allowed;
  transform:none;
}
.reqBtn.is-loading{
  position: relative;
}
.reqBtn.is-loading::after{
  content:"";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.22);
  border-top-color: rgba(255,255,255,0.72);
  display:inline-block;
  margin-left: 8px;
  animation: reqSpin 700ms linear infinite;
}
@keyframes reqSpin{ to{ transform: rotate(360deg); } }

.reqEmpty{
  padding: 14px 12px;
  color: rgba(255,255,255,0.70);
  font-weight: 800;
}

.reqPager{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.10);
}

.reqPagerBtn{
  min-width: 38px;
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.90);
  font-weight: 1000;
  cursor:pointer;
}
.reqPagerBtn:hover{
  border-color: var(--accentBorder);
  box-shadow: 0 0 0 3px var(--accentGlow);
}
.reqPagerBtn.is-active{
  border-color: rgba(0,207,255,0.22);
  box-shadow: 0 0 0 3px rgba(0,207,255,0.06);
  background: rgba(0,207,255,0.08);
}
.reqPagerBtn:disabled{ opacity: 0.55; cursor:not-allowed; }
.reqPagerSep{
  color: rgba(255,255,255,0.55);
  font-weight: 900;
  padding: 0 2px;
}

@media (max-width: 1024px){
  .reqSearch{ min-width: min(520px, 64vw); }
}

@media (max-width: 620px){
  .reqShell__head{ flex-direction: column; align-items: stretch; }
  .reqControls{ justify-content: stretch; }
  .reqSearch{ min-width: 100%; }
  .reqRow{ align-items: flex-start; }
  .reqRow__title, .reqRow__meta{ max-width: 62ch; }
}
