.search {
  align-items: center;
  gap: 10px;
}

.search input:not([type="hidden"]) {
  height: 44px;
  margin: 0;
  padding: 0 14px;
  background: #f8fbf9;
  transition: border-color .2s, box-shadow .2s;
}

.search input:not([type="hidden"]):focus {
  outline: 0;
  border-color: #4b9b86;
  box-shadow: 0 0 0 3px rgba(23, 107, 87, .12);
}

.search button {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 11px;
  padding: 0 20px;
  background: #176b57;
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(23, 107, 87, .18);
  transition: transform .15s, background .2s, box-shadow .2s;
}

.search button span {
  font-size: 22px;
  line-height: 1;
  transform: rotate(-20deg);
}

.search button:hover {
  background: #0f5847;
  box-shadow: 0 7px 16px rgba(23, 107, 87, .25);
  transform: translateY(-1px);
}

.search button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(23, 107, 87, .18);
}

.search button:focus-visible {
  outline: 3px solid rgba(23, 107, 87, .25);
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .search { width: 100%; }
  .search input:not([type="hidden"]) { min-width: 0; flex: 1; }
  .search button { padding: 0 16px; }
}

.roster-actions { display: flex; align-items: center; gap: 10px; }
.import-button { height: 44px; display: inline-flex; align-items: center; padding: 0 16px; border: 1px solid #8ab7aa; border-radius: 11px; color: #176b57; background: #eff8f4; font-weight: 800; white-space: nowrap; }
.import-button:hover { background: #dff2eb; }
.import-panel { max-width: 900px; }
.back-link { display: block; margin-bottom: 22px; color: #64766f; font-weight: 700; }
.upload-box { margin-top: 28px; padding: 28px; border: 2px dashed #9fc5b9; border-radius: 16px; background: #f8fbf9; display: grid; gap: 18px; }
.upload-box label strong,.upload-box label small { display: block; }
.upload-box label small { color: #64766f; margin-top: 5px; }
.upload-box input[type=file],.replace-upload input[type=file] { padding: 12px; border: 1px solid #dce5df; border-radius: 9px; background: #fff; }
.import-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 22px 0; }
.import-summary div { padding: 16px; background: #f1f7f4; border-radius: 10px; }
.import-summary small,.import-summary strong { display: block; }
.import-summary small { color: #64766f; margin-bottom: 5px; }
.confirm-import { display: flex; align-items: flex-end; justify-content: flex-end; gap: 12px; margin-top: 22px; }
.confirm-import label { font-size: 13px; font-weight: 800; }
.confirm-import select { display: block; padding: 11px; margin-top: 6px; border: 1px solid #cbd8d1; border-radius: 9px; }
.replace-upload { display: flex; gap: 10px; align-items: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid #dce5df; }
.replace-upload button { padding: 10px 14px; border: 0; border-radius: 9px; font-weight: 800; cursor: pointer; }
@media(max-width:900px){.roster-actions{align-items:stretch;flex-direction:column;margin-bottom:18px}.import-button{justify-content:center}.import-summary{grid-template-columns:1fr}.confirm-import,.replace-upload{align-items:stretch;flex-direction:column}}
.report-hero{margin-bottom:22px}.report-cards{display:grid;grid-template-columns:1fr 1fr;gap:22px}.report-cards .panel{margin:0}.report-cards p{min-height:44px}@media(max-width:800px){.report-cards{grid-template-columns:1fr}.report-cards p{min-height:0}}
