.card{
  background:#fff;
  border:1px solid #d0d7e2;
  border-radius:10px;
  padding:14px;
  margin-bottom:12px;
}
.card h2{
  margin-bottom:10px;
  color:#2f5597;
  font-weight:900;
}
.grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap:10px;
}
label{
  display:block;
  font-size:12px;
  font-weight:900;
  margin-bottom:4px;
  color:#444;
}
input, select{
  width:100%;
  padding:10px 12px;
  border:1px solid #c9c9c9;
  border-radius:8px;
}
.actions{ margin-top:10px; display:flex; justify-content:flex-end; }
.btn{
  padding:10px 14px;
  border-radius:10px;
  border:1px solid #c9c9c9;
  background:#fff;
  cursor:pointer;
  font-weight:900;
}
.btn.primary{
  background:#2f5597;
  border-color:#2f5597;
  color:#fff;
}
.btn.primary:hover{ filter:brightness(1.05); }
.hint{ margin-top:8px; font-size:12px; color:#666; }

.table-wrap{ overflow:auto; }
.tbl{
  width:100%;
  border-collapse:collapse;
  min-width:900px;
}
.tbl th, .tbl td{
  border:1px solid #c9c9c9;
  padding:8px 10px;
  font-size:13px;
  white-space:nowrap;
}
.tbl thead th{
  background:#2f5597;
  color:#fff;
  position:sticky;
  top:0;
}
.link-danger{
  color:#b00020;
  font-weight:900;
  cursor:pointer;
  text-decoration:underline;
}
