/* STRICT SCOPE: only inside gp-requests output */
.gp-req-root, .gp-req-root * { box-sizing: border-box; }
.gp-req-root { color: #eaeaea; }

.gp-req-wrap{
  max-width: 1180px;
  margin: 70px auto 140px;
  padding: 0 18px;
}

/* Phoenix Gold headings like gp-user-profile */
.gp-req-root h1,
.gp-req-root h2{
  font-weight: 800;
  background: linear-gradient(135deg, #ffd36a, #ff9f1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(255, 170, 60, 0.45);
  margin: 0 0 14px;
}

.gp-req-headline{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.gp-req-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.gp-req-tab{
  border:1px solid rgba(255,255,255,.16);
  background: rgba(20,20,20,.58);
  backdrop-filter: blur(14px);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
}
.gp-req-tab.is-active{
  background: linear-gradient(135deg,#ffb347,#ff8c00);
  color:#111;
  border-color: rgba(0,0,0,.2);
}

.gp-req-panel{ display:none; }
.gp-req-panel.is-active{ display:block; }

.gp-card{
  background: rgba(20,20,20,.62);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 16px 16px;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  margin: 14px 0;
}

.gp-req-empty{
  padding: 18px;
  color: rgba(255,255,255,.82);
}

.gp-req-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.gp-req-left{ min-width: 0; }

.gp-req-title{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.gp-req-name{
  font-weight:800;
  color:#fff;
  letter-spacing:.2px;
}

.gp-req-type{
  font-weight:800;
  color:#ffcc66;
  text-shadow: 0 0 10px rgba(255,180,60,.25);
  opacity:.95;
}

.gp-req-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
}

.gp-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  font-weight:700;
  font-size: 13px;
}

.gp-chip-role{
  border-color: rgba(255,179,71,.35);
  background: rgba(255,140,0,.10);
  color:#ffcc66;
}

.gp-chip-dim{
  opacity:.75;
}

.gp-req-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.gp-btn{
  border:0;
  border-radius:999px;
  padding: 10px 14px;
  font-weight:800;
  cursor:pointer;
  line-height:1;
  transition: transform .12s ease, filter .12s ease;
  user-select:none;
}
.gp-btn:active{ transform: scale(.98); }

.gp-btn-gold{
  background: linear-gradient(135deg,#ffb347,#ff8c00);
  color:#111;
}
.gp-btn-ghost{
  background: rgba(20,20,20,.50);
  border: 1px solid rgba(255,255,255,.16);
  color:#fff;
}
.gp-btn-danger{
  background: linear-gradient(135deg,#ff5a5a,#ff2d2d);
  color:#111;
}

.gp-req-details{
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 12px;
}

.gp-req-details > summary{
  cursor:pointer;
  list-style:none;
  font-weight:800;
  color:#ffcc66;
  text-shadow: 0 0 10px rgba(255,180,60,.22);
}
.gp-req-details > summary::-webkit-details-marker{ display:none; }

.gp-req-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.gp-req-grid strong{
  display:block;
  color:#fff;
  margin-bottom:4px;
}
.gp-req-grid div{
  color: rgba(255,255,255,.86);
}

.gp-req-about{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
}

.gp-req-bulkbar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 10px 0 14px;
}

/* archive checkbox */
.gp-req-check{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.gp-req-check input{
  width: 18px;
  height: 18px;
  accent-color: #ff9f1c;
}
.gp-req-archived{ opacity: .92; }

/* responsive */
@media (max-width: 980px){
  .gp-req-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .gp-req-grid{ grid-template-columns: 1fr; }
  .gp-req-row{ flex-direction: column; }
  .gp-req-actions{ justify-content:flex-start; }
}
