/* OPENCLAW_TASK_REQUEST_UI_V1 */

.oc-request-panel{
  margin:18px 0;
  padding:24px;
  background:#13203A;
  border:1px solid #22304D;
  border-radius:12px;
  box-shadow:0 8px 32px rgba(0,0,0,.25),0 0 0 1px rgba(255,255,255,.03);
  display:none;
}

.oc-request-panel.active{
  display:block;
}

.oc-request-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  margin-bottom:18px;
}

.oc-request-head h3{
  margin:0;
  color:#FFFFFF;
  font-size:22px;
  letter-spacing:-.03em;
}

.oc-request-head p{
  margin:8px 0 0;
  color:#CBD5E1;
  font-size:14px;
  line-height:1.55;
}

.oc-request-badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(245,158,11,.13);
  border:1px solid rgba(245,158,11,.28);
  color:#F59E0B;
  font-size:12px;
  font-weight:850;
  margin-bottom:10px;
}

.oc-request-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.oc-field{
  display:grid;
  gap:7px;
}

.oc-field.full{
  grid-column:1 / -1;
}

.oc-field label{
  color:#CBD5E1;
  font-size:12px;
  font-weight:800;
}

.oc-field input,
.oc-field select,
.oc-field textarea{
  width:100%;
  background:#0F172A;
  color:#FFFFFF;
  border:1px solid #22304D;
  border-radius:10px;
  padding:11px 12px;
  font:inherit;
}

.oc-field textarea{
  min-height:96px;
  resize:vertical;
}

.oc-field input:focus,
.oc-field select:focus,
.oc-field textarea:focus{
  outline:none;
  border-color:#F59E0B;
  box-shadow:0 0 0 2px rgba(245,158,11,.22);
}

.oc-request-actions{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.oc-request-status{
  margin-top:14px;
  padding:12px 14px;
  border-radius:10px;
  background:#0F172A;
  border:1px solid #22304D;
  color:#CBD5E1;
  font-size:13px;
  white-space:pre-wrap;
}

.oc-request-row{
  background:rgba(245,158,11,.045) !important;
}

.oc-request-row .oc-title::before{
  content:"📝 Solicitação · ";
  color:#F59E0B;
}

.oc-request-row .oc-status{
  background:rgba(245,158,11,.15);
  color:#F59E0B;
}

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

  .oc-request-head{
    flex-direction:column;
  }

  .oc-request-actions{
    display:grid;
  }

  .oc-request-actions button{
    width:100%;
  }
}
