/* ═══════════════════════════════════════════════════════════════════════════════
   Trophy Registry – Main Stylesheet  (Modules 1 + 2 + 3)
   Font:    Jost (Google Fonts)
   Colors:  bg #FFF6EF  |  accent #FF5E1A  |  heading #252525  |  body #2E2E2E
   ════════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Base ───────────────────────────────────────────────────────────────────── */
.tr-overlay,
.tr-modal-backdrop,
.tr-dashboard,
.tr-profile-page,
.tr-modal,
.tr-field,
.tr-btn {
  font-family: 'Jost', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   OVERLAY / BACKDROP
   ════════════════════════════════════════════════════════════════════════════ */

.tr-overlay,
.tr-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(37, 37, 37, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  overflow-y: auto;
}

body.tr-modal-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════════════════════
   AUTH PAGES — LOGIN / SIGNUP
   ════════════════════════════════════════════════════════════════════════════ */

.tr-overlay .tr-modal {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 48px 40px 36px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 20px 60px rgba(255,94,26,0.12);
}

/* Logo area */
.tr-modal__logo {
  text-align: center;
  margin-bottom: 16px;
}

.tr-modal__logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* Fallback icon when no logo */
.tr-modal__logo svg { display: block; margin: 0 auto; }

/* Title */
.tr-modal__title {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  color: #252525;
  margin-bottom: 6px;
  line-height: 1.15;
}

.tr-modal__sub {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: #2E2E2E;
  margin-bottom: 28px;
}
.tr-modal__sub a { color: #FF5E1A; text-decoration: none; font-weight: 600; }
.tr-modal__sub a:hover { text-decoration: underline; }

.tr-modal__notice {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  margin-top: 18px;
  line-height: 1.6;
}

/* Close button */
.tr-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: #FF5E1A;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
  line-height: 1;
  text-decoration: none;
  transition: color .15s;
}
.tr-modal__close:hover {
  color: white;
  background-color: black;
}

/* ── Auth page background wrapper ─────────────────────────────────────────── */
.tr-auth-page {
  min-height: 85vh;
  background: #FFF6EF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FORM FIELDS
   ════════════════════════════════════════════════════════════════════════════ */

.tr-field { margin-bottom: 16px; }

.tr-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #252525;
  margin-bottom: 6px;
  font-family: 'Jost', sans-serif;
}

.tr-field input,
.tr-field select,
.tr-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #25252526;
  border-radius: 0px !important;
  font-size: 15px;
  font-weight: 400;
  font-family: 'Jost', sans-serif;
  background: #FFFFFF;
  color: #2E2E2E;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  appearance: none;
}

.tr-field input:focus,
.tr-field select:focus,
.tr-field textarea:focus {
  border-color: #FF5E1A;
  box-shadow: 0 0 0 3px rgba(255,94,26,.1);
}

.tr-field input::placeholder,
.tr-field textarea::placeholder { color: #C4B8B0; }

.tr-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.tr-field input:disabled {
  background: #F8F4F0;
  color: #C0B0A8;
  cursor: not-allowed;
  border-color: #EEE8E4;
}

.tr-field__wrap { position: relative; }
.tr-field__wrap input { padding-right: 42px; }

.tr-field__icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  color: #C4B8B0;
}
.tr-field__icon:hover { color: #FF5E1A; }

/* Required asterisk */
.tr-required { color: #FF5E1A; font-size: 12px; margin-left: 3px; }
.tr-field-hint { font-size: 11px; font-weight: 400; color: #bbb; margin-left: 6px; }

/* Form grid */
.tr-form-row { margin-bottom: 0; }
.tr-form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Form section label */
.tr-form-section-title {
  font-size: 18px;
  font-weight: 500;
  color: #252525;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F0E8E0;
  font-family: 'Jost', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════════════════ */

.tr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 16px 24px;
  border-radius:0px  !important;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s, opacity .15s;
  line-height: 1;
}
.tr-btn:disabled { opacity: .55; cursor: not-allowed; }

.tr-btn--primary { background: #FF5E1A; color: #FFFFFF;  border-radius:0px !important;}
.tr-btn--primary:hover { background: #000; color: #FFFFFF; }

.tr-btn--outline {
  background: transparent;
  color: #111111;
  border: 1.5px solid #DEDEDE;
  border-radius: 0px !important;
}
.tr-btn--outline:hover { background: #000; color: #fff; }

.tr-btn--ghost {
  background: transparent;
  color: #000;
  border: 1.5px solid #DDD;
}
.tr-btn--ghost:hover { background:#000; color: white; }

.tr-btn--full { width: 100%; margin-top: 8px; }
.tr-btn--sm   { padding: 7px 16px; font-size: 13px; }

/* Form actions row */
.tr-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #F0E8E0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MESSAGES / ALERTS
   ════════════════════════════════════════════════════════════════════════════ */

.tr-message {
  padding: 11px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  margin-bottom: 16px;
  line-height: 1.5;
}
.tr-message--success { background: #FFF3EE; color: #C04010; border: 1px solid #FFD4BC; }
.tr-message--error   { background: #FFF0F0; color: #B91C1C; border: 1px solid #FFC9C9; }

/* ═══════════════════════════════════════════════════════════════════════════════
   MODAL (non-auth — edit profile, add trophy etc.)
   ════════════════════════════════════════════════════════════════════════════ */

.tr-modal-backdrop .tr-modal {
  background: #FFFFFF;
 
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 460px;
  position: relative;
  color: #2E2E2E;
  max-height: 92vh;
  overflow-y: auto;
}

.tr-modal--wide  { max-width: 700px !important; }
.tr-modal--qr    { max-width: 360px !important; text-align: center; }

/* ═══════════════════════════════════════════════════════════════════════════════
   DASHBOARD
   ════════════════════════════════════════════════════════════════════════════ */

.tr-dashboard {
  max-width: 1300px;
  margin: 0 auto;
  padding: 55px 24px 60px;
  font-family: 'Jost', sans-serif;
  color: #2E2E2E;
}

.tr-dashboard__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.tr-dashboard__title {
  font-size: 40px;
  font-weight: 500;
  color: #252525;
  margin: 0 0 4px;
  line-height: 1.15;
}
.tr-dashboard__sub { font-size: 15px; color: #888; margin: 0; }

/* Profile card */
.tr-profile-card {
  background: #FFF6EF;
  border: 1.5px solid #DEDEDE;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 18px;
}

.tr-profile-card__left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tr-profile-card__avatar {
  width: 133px;
  height: 128px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.tr-profile-card__info h3 {
  font-size: 26px;
  font-weight: 500;
  color: #111111;
  margin: 0 0 5px;
}

.tr-profile-card__info p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  color: #2E2E2E;
  margin: 0 0 5px;
}

.tr-profile-card__meta {
  font-size: 13px;
  color: #999;
}

/* Section */
.tr-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.tr-section__head h2 {
  font-size: 40px;
  font-weight: 500;
  color: #252525;
  margin: 0;
}

/* Filters */
.tr-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-direction:row;
}

.tr-search {
	border-radius:0px !important;
  flex: 1;
  min-width: 45%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F9F9F9;
  border: 1.5px solid #E3E3E3;
  
  padding: 9px 20px;
}
.tr-search input {
	border-radius:0px !important;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  width: 100%;
  background: transparent;
  color: #2E2E2E;
	box-shadow:none !important;
}
.tr-search input::placeholder { color: #BBA89C; }

.tr-select {
  padding: 10px 36px 10px 13px;
  border: 1.5px solid #E3E3E3;
  border-radius:0px !important;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  background: #F9F9F9;
  color: #515151;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23FF5E1A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 17px center;
  transition: border-color .15s;
	height:60px;
}
.tr-select:focus { border-color: #FF5E1A; outline: none; }

/* Trophy table */
.tr-table-card {
  background: #FFFFFF;
  border: 1.5px solid #E3E3E3;
  
  overflow: hidden;
  padding: 32px 28px;
	
}

.tr-table{
	border-width: 1px 1px 1px 1px !important;
}

.tr-table-card .tr-filters {
  margin-bottom: 30px;
}

.tr-table-wrap {
  
  overflow-x: auto;
}

.tr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
}

.tr-table th {

  text-align: center;
  padding: 20px 14px;
  font-size: 16px;
  font-weight: 600;
  color: #4D4D4D;
  
  letter-spacing: .6px;
  border-bottom: 1px solid #E3E3E3;
}

.tr-table td {
  padding: 20px 14px;
  text-align: center;
  border:0px !important;
  color: #2E2E2E;
  font-size: 15px;
}

.tr-table tr:last-child td { border-bottom: none; }
.tr-table tr:nth-child(odd) td  { background: #FFF9F2; }
.tr-table tr:hover td { background: #FFF0E6; transition: background .1s; }

.tr-table__loading td { color: #bbb; padding: 40px; text-align: center; }
.tr-table__empty td   { padding: 52px 20px; }
.tr-table__none { color: #ccc; font-size: 12px; }

.tr-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #ccc;
  font-size: 14px;
}
.tr-empty-state strong { color: #FF5E1A; }

.tr-trophy-id {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #FF5E1A;
  letter-spacing: .5px;
}

/* QR / PDF table buttons */
.tr-qr-btn, .tr-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  color: #555;
  background: #FFFFFF;
  border: 1.5px solid #E8DDD6;
  border-radius: 6px;
  padding: 5px 11px;
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}
.tr-qr-btn:hover  { border-color: #FF5E1A; color: #FF5E1A; background: #FFF6EF; }
.tr-pdf-btn:hover { border-color: #22C55E; color: #16A34A; background: #F0FDF4; }

/* Action kebab */
.tr-action-menu { position: relative; display: inline-block; }

.tr-kebab {
  background: none;
  border: none;
  font-size: 23px;
  cursor: pointer;
  color: #000;
  padding: 4px 10px;
  border-radius: 6px;
  line-height: 1;
  transition: background .1s, color .1s;
	box-shadow:none !important;
}
.tr-kebab:hover { background: #FFF6EF; color: #FF5E1A; }

.tr-action-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  background: #FFFFFF;
  border: 1.5px solid #F0E8E0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(255,94,26,.10);
  min-width: 130px;
  z-index: 200;
  display: none;
  overflow: hidden;
}
.tr-action-dropdown.open { display: block; }

.tr-action-dropdown button {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  text-align: left;
  padding: 10px 15px;
  background: none;
  border: none;
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  color: #2E2E2E;
  transition: background .1s;
}
.tr-action-dropdown button:hover { background: #FFF6EF; }
.tr-action-dropdown button.tr-action-delete { color: #EF4444; }
.tr-action-dropdown button.tr-action-delete:hover { background: #FFF0F0; }

/* ═══════════════════════════════════════════════════════════════════════════════
   UPLOAD ZONE
   ════════════════════════════════════════════════════════════════════════════ */

.tr-upload-zone {
  border: 2px dashed #FFD4BC;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  background: #FFF9F6;
  user-select: none;
}
.tr-upload-zone:hover { border-color: #FF5E1A; background: #FFF3EE; }
.tr-upload-zone p { font-size: 14px; color: #C0A898; margin: 8px 0 0; font-family: 'Jost', sans-serif; }

/* Hidden file input MUST be outside zone to avoid recursion */
input[type="file"].tr-file-input { display: none !important; }

.tr-upload-preview {
  position: relative;
  display: inline-block;
  margin-top: 10px;
}
.tr-upload-preview img {
  max-width: 140px;
  max-height: 140px;
  border-radius: 10px;
  object-fit: cover;
  border: 2.5px solid #FF5E1A;
  display: block;
}
.tr-upload-remove {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #EF4444;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TROPHY SUCCESS PANEL
   ════════════════════════════════════════════════════════════════════════════ */

#tr-trophy-success { text-align: center; padding: 10px 0 20px; }
#tr-trophy-success h3 { font-size: 24px; font-weight: 500; color: #252525; margin: 0 0 8px; font-family: 'Jost', sans-serif; }
#tr-trophy-success p  { color: #888; font-size: 14px; margin: 0 0 24px; }

#tr-success-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

#tr-success-qr-wrap img {
  width: 100px;
  height: 100px;
  border: 2.5px solid #FF5E1A;
  border-radius: 8px;
  display: block;
}
#tr-success-qr-wrap p { font-size: 11px; color: #aaa; margin: 4px 0 0; font-family: 'Jost', sans-serif; }

/* ═══════════════════════════════════════════════════════════════════════════════
   QR VIEW MODAL
   ════════════════════════════════════════════════════════════════════════════ */

.tr-qr-modal__id {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #FF5E1A;
  margin: 0 0 18px;
  letter-spacing: .5px;
  display: block;
}

.tr-qr-modal__img-wrap { display: flex; justify-content: center; margin-bottom: 14px; }

.tr-qr-modal__img {
  width: 200px;
  height: 200px;
  border: 3px solid #FF5E1A;
  border-radius: 12px;
  display: block;
}

.tr-qr-modal__hint { font-size: 13px; color: #aaa; margin: 0 0 20px; line-height: 1.6; font-family: 'Jost', sans-serif; }

.tr-qr-modal__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════════════
   PROFILE PAGE (standalone)
   ════════════════════════════════════════════════════════════════════════════ */

.tr-profile-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 24px;
  font-family: 'Jost', sans-serif;
}

.tr-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.tr-page-header h1 { font-size: 40px; font-weight: 500; color: #252525; margin: 0; }

.tr-profile-page__body { display: grid; grid-template-columns: 240px 1fr; gap: 28px; }

.tr-profile-page__sidebar {
  background: #FFF6EF;
  border: 1.5px solid #FFD6BC;
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
}

.tr-avatar-wrap { margin-bottom: 14px; }
.tr-avatar-lg {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FF5E1A;
}

.tr-profile-page__name  { font-size: 18px; font-weight: 500; color: #252525; margin: 0 0 4px; font-family: 'Jost', sans-serif; }
.tr-profile-page__email { font-size: 13px; color: #999; margin: 0 0 16px; }

.tr-profile-page__stats { display: flex; gap: 10px; justify-content: center; margin-bottom: 14px; }

.tr-stat {
  flex: 1;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  border: 1px solid #F0E8E0;
}
.tr-stat__num   { display: block; font-size: 20px; font-weight: 600; color: #FF5E1A; font-family: 'Jost', sans-serif; }
.tr-stat__label { display: block; font-size: 11px; color: #aaa; margin-top: 2px; }
.tr-profile-page__id { font-size: 12px; color: #bbb; }

.tr-profile-page__main {
  background: #FFFFFF;
  border: 1.5px solid #F0E8E0;
  border-radius: 14px;
  padding: 28px 26px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SPINNER
   ════════════════════════════════════════════════════════════════════════════ */

.tr-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: tr-spin .6s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes tr-spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 720px) {
  .tr-form-row--2      { grid-template-columns: 1fr; }
  .tr-profile-page__body { grid-template-columns: 1fr; }
  .tr-profile-card     { flex-direction: column; align-items: flex-start; }
  .tr-modal--wide      { max-width: 96vw !important; padding: 24px 16px; }
  .tr-dashboard__header { flex-direction: column; gap: 12px; }
  .tr-section__head    { flex-wrap: wrap; gap: 10px; }
  .tr-qr-modal__actions { flex-direction: column; }
  .tr-table            { font-size: 12px; }
  .tr-table th, .tr-table td { padding: 10px 8px; }
}
/* ═══════════════════════════════════════════════════════════════════════════════
   TROPHY SCORE SECTION
   ════════════════════════════════════════════════════════════════════════════ */

.tr-score-section {
  border: 1.5px solid #E07B3922;
  border-radius: 0;
  margin-bottom: 16px;
  overflow: hidden;
}

.tr-score-section__header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #E07B39 0%, #f0924a 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Jost', sans-serif;
  padding: 10px 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.tr-score-section__header svg { flex-shrink: 0; opacity: 0.9; }

.tr-score-section__body {
  padding: 14px 14px 10px;
  background: #fffaf7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Official Score checkbox row */
.tr-score-official-row {
  border-top: 1px solid #f0e8e0;
  padding-top: 10px;
}

.tr-score-official-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-family: 'Jost', sans-serif;
}

.tr-score-official-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.tr-score-official-check__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #d0c4bc;
  background: #fff;
  border-radius: 3px;
  transition: border-color .15s, background .15s;
}

.tr-score-official-check__box svg {
  display: none;
}

.tr-score-official-check input[type="checkbox"]:checked ~ .tr-score-official-check__box {
  background: #E07B39;
  border-color: #E07B39;
}

.tr-score-official-check input[type="checkbox"]:checked ~ .tr-score-official-check__box svg {
  display: block;
}

.tr-score-official-check:hover .tr-score-official-check__box {
  border-color: #E07B39;
}

.tr-score-official-check__label {
  font-size: 14px;
  font-weight: 600;
  color: #2e2e2e;
  line-height: 1.3;
}

.tr-score-official-check__sub {
  font-weight: 400;
  color: #888;
  font-size: 12px;
}

@media (max-width: 720px) {
  .tr-score-section__body .tr-form-row--2 { grid-template-columns: 1fr; }
}
