/* 단체별 기록 다운로드 페이지 전용 스타일 (connectus.html 참고) */
body.team-record-download-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
body.team-record-download-page section {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(42,67,101,0.09);
  padding: 2.5rem 2rem 2rem 2rem;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body.team-record-download-page .section-title {
  text-align: center !important;
  margin-bottom: 32px !important;
  font-size: 2em !important;
  font-weight: bold !important;
  display: block !important;
  width: 100% !important;
}
body.team-record-download-page .admin-card {
  width: 100%;
  background: none;
  box-shadow: none;
  border-radius: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
body.team-record-download-page .admin-card p {
  text-align: center;
  margin-bottom: 1.2rem;
}
body.team-record-download-page .control-group {
  width: 100%;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.team-record-download-page .control-group label {
  margin-bottom: 0.4rem;
  font-weight: 500;
  text-align: center;
}
body.team-record-download-page .control-group input,
body.team-record-download-page .control-group select {
  width: 100%;
  max-width: 300px;
  padding: 0.7rem 1rem;
  border: 2px solid #2A4365;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
body.team-record-download-page .admin-card button {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 1.5rem auto 0 auto;
  margin-bottom: 1.2rem;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  font-weight: bold;
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(42,67,101,0.07);
  cursor: pointer;
  transition: background 0.2s;
}
body.team-record-download-page .admin-card button:hover {
  background: #f09045;
}
