
.gri-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.gri-card{
  border:1px solid #ddd;
  padding:16px;
  border-radius:10px;
  background:white;
}
.gri-card-full{
  grid-column:1/-1;
}
textarea, input{
  width:100%;
  margin-bottom:10px;
  padding:10px;
  box-sizing:border-box;
}
button{
  padding:8px 14px;
  background:#336688;
  color:white;
  border:none;
  border-radius:8px;
  cursor:pointer;
}
pre{
  white-space:pre-wrap;
  word-break:break-word;
  background:#f7f7f7;
  padding:12px;
  border-radius:8px;
}
.gri-status{
  margin-bottom:12px;
  padding:10px 12px;
  border-radius:8px;
  background:#eef6fb;
  color:#234;
}
.gri-status-error{
  background:#fdecec;
  color:#8a1f1f;
}
