.team-layout{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
  gap:24px;
  margin-bottom:28px;
}

.controls-card textarea{
  width:100%;
  padding:14px;
  border-radius:12px;
  border:1px solid var(--light-gray);
  background:var(--medium-gray);
  color:var(--cream);
  font-family:'Inter',sans-serif;
  resize:vertical;
}

.help-text{
  font-size:.85em;
  opacity:.7;
  margin-top:4px;
}

.results-card .results-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.results-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
}

.team-card{
  border:1px solid var(--light-gray);
  border-radius:14px;
  padding:14px 16px;
  background:#141414;
}

.team-card h4{
  margin-bottom:10px;
  color:var(--gold);
  font-family:'Fredoka',sans-serif;
}

.team-card ul{
  list-style:none;
  padding:0;
  margin:0;
  line-height:1.6;
}

.team-card ul li{
  border-bottom:1px solid rgba(255,255,255,.05);
  padding:4px 0;
}

.team-card ul li:last-child{border-bottom:none}

.detail-panel{
  border:1px dashed var(--light-gray);
  border-radius:14px;
  padding:18px;
  margin-top:20px;
  line-height:1.5;
}

.history{
  margin-top:28px;
  background:var(--dark-gray);
  border:1px solid var(--light-gray);
  border-radius:16px;
  padding:24px;
}

.history-list{
  margin-top:18px;
  border:1px dashed var(--light-gray);
  border-radius:14px;
  padding:16px;
  max-height:320px;
  overflow:auto;
}

.history-entry{
  border:1px solid rgba(251,139,36,.4);
  border-radius:12px;
  padding:12px;
  margin-bottom:12px;
  background:#151515;
}

.history-entry h4{
  font-family:'Fredoka',sans-serif;
  color:var(--gold);
  margin-bottom:8px;
}

.history-entry ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  font-size:.95em;
}

@media(max-width:640px){
  .team-layout{grid-template-columns:1fr}
}
