/* HEPHA — geração da versão portátil para a Diretoria */
#admin .director-export-card{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:14px;
  margin-top:12px;
  padding:14px 16px;
  border:1px solid #d7e1e6;
  border-left:4px solid #ff7417;
  border-radius:13px;
  background:linear-gradient(110deg,#ffffff 0%,#f7fafb 72%,#fff4eb 100%);
  box-shadow:0 5px 16px rgba(7,31,42,.06);
}

#admin .director-export-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:12px;
  color:#ff7417;
  background:#fff0e4;
}

#admin .director-export-icon svg,
#admin .director-export-button svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

#admin .director-export-copy>span{
  display:block;
  margin-bottom:3px;
  color:#ff7417;
  font-size:8px;
  line-height:1;
  font-weight:900;
  letter-spacing:.12em;
}

#admin .director-export-copy h3{
  margin:0;
  color:#092b39;
  font-size:14px;
  line-height:1.2;
}

#admin .director-export-copy p{
  margin:4px 0 0;
  color:#637984;
  font-size:9px;
  line-height:1.4;
}

#admin .director-export-summary{
  min-height:14px;
  margin-top:5px;
  color:#177451;
  font-size:9px;
  font-weight:800;
}

#admin .director-export-summary.error{color:#b44343}
#admin .director-export-summary.busy{color:#b55a15}

#admin .director-export-button{
  min-width:205px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 15px;
  border:0;
  border-radius:10px;
  color:#fff;
  background:#ff7417;
  box-shadow:0 6px 14px rgba(255,116,23,.22);
  font:900 10px Inter,Segoe UI,Arial,sans-serif;
  cursor:pointer;
  transition:transform .15s ease,box-shadow .15s ease,opacity .15s ease;
}

#admin .director-export-button:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(255,116,23,.3);
}

#admin .director-export-button:disabled{
  cursor:wait;
  opacity:.62;
  transform:none;
}

@media(max-width:800px){
  #admin .director-export-card{grid-template-columns:auto minmax(0,1fr)}
  #admin .director-export-button{grid-column:1/-1;width:100%}
}
