.tr-registration-form h2 {
margin-bottom: 1.875rem;
}
.tr-registration-form h3 {
margin-bottom: 1.25rem;
border-bottom: 2px solid currentColor;
padding-bottom: 0.625rem;
}
.tr-form-section {
margin-bottom: 1.25rem;
padding: 1.25rem;
background: rgba(0, 0, 0, 0.02);
border-radius: 0.5rem;
}
.tr-form-section-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.25rem;
}
.tr-form-section-header h3 {
margin-bottom: 0;
border-bottom: none;
padding-bottom: 0;
}
.tr-form-group {
margin-bottom: 1.25rem;
}
.tr-form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
}
.tr-form-group input[type="text"],
.tr-form-group input[type="email"],
.tr-form-group input[type="tel"],
.tr-form-group input[type="date"],
.tr-form-group select {
width: 100%;
padding: 0.625rem;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 0.25rem;
font-size: 1rem;
box-sizing: border-box;
margin-top: 0px !important;
min-height: 2.5rem;
}
.tr-form-group input:focus,
.tr-form-group select:focus {
outline: 2px solid currentColor;
outline-offset: 2px;
}
.tr-form-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.25rem;
}
.tr-player-row {
background: rgba(255, 255, 255, 0.5);
padding: 1.25rem;
margin-bottom: 0.625rem;
border-radius: 0.5rem;
border: 1px solid rgba(0, 0, 0, 0.1);
}
.tr-form-group-actions {
display: flex;
align-items: flex-end;
align-self: end;
}
.tr-form-group-actions .btn {
width: 100%;
min-height: 2.5rem; display: flex;
align-items: center;
justify-content: center;
}  .tr-form-actions {
text-align: center;
margin-top: 1.875rem;
}
.tr-message {
padding: 1.25rem;
margin-bottom: 1.25rem;
border-radius: 0.5rem;
font-weight: 500;
}
.tr-message-success {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.tr-message-error {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
.tr-no-players {
font-style: italic;
text-align: center;
padding: 1.25rem;
opacity: 0.7;
}
.tr-total-section {
background: rgba(0, 0, 0, 0.03);
border: 2px solid currentColor;
}
.tr-summary {
padding: 1.25rem;
background: rgba(255, 255, 255, 0.5);
border-radius: 0.5rem;
}
.tr-summary p {
margin: 0.5rem 0;
font-size: 1rem;
}
.tr-total-price {
font-size: 1.125rem !important;
font-weight: 500 !important;
margin-top: 0.625rem !important;
padding-top: 0.625rem;
border-top: 2px solid currentColor;
} .tr-tabs {
display: flex;
gap: 0.625rem;
margin-bottom: 0;
border-bottom: 2px solid currentColor;
padding-bottom: 0;
}
.tr-tab {
padding: 0.75rem 1.25rem;
background: transparent;
border: none;
border-bottom: 3px solid transparent;
cursor: pointer;
font-size: 1rem;
font-weight: 500;
color: rgba(0, 0, 0, 0.7);
transition: all 0.2s ease;
margin-bottom: -2px;
}
.tr-tab:hover {
color: currentColor;
background: rgba(0, 0, 0, 0.02);
}
.tr-tab-active {
color: currentColor;
border-bottom-color: currentColor;
font-weight: 600;
}
.tr-tab-content {
padding-top: 1.25rem;
}
.tr-badge {
display: inline-block;
padding: 0.25rem 0.75rem;
border-radius: 0.25rem;
font-size: 0.875rem;
font-weight: 500;
}
.tr-badge-scheduled {
background: rgba(0, 0, 0, 0.1);
color: rgba(0, 0, 0, 0.7);
}
.tr-badge-live {
background: rgba(220, 50, 50, 0.1);
color: #dc3232;
animation: pulse 2s infinite;
}
.tr-badge-finished {
background: rgba(0, 115, 170, 0.1);
color: #0073aa;
}
.tr-badge-cancelled {
background: rgba(0, 0, 0, 0.1);
color: rgba(0, 0, 0, 0.5);
text-decoration: line-through;
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.7;
}
}
.tr-loading {
text-align: center;
padding: 2.5rem;
font-size: 1.125rem;
opacity: 0.7;
} .tr-schedule-cards {
display: grid;
grid-template-columns: 1fr;
gap: 1.25rem;
}
.tr-schedule-card {
background: rgba(255, 255, 255, 0.6);
border: 1px solid rgba(0, 0, 0, 0.08);
border-radius: 0.75rem;
padding: 1.25rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.tr-schedule-card:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.tr-schedule-card--finished {
border-left: 4px solid rgba(0, 0, 0, 0.25);
background: rgba(0, 0, 0, 0.02);
}
.tr-schedule-card--live {
border-left: 4px solid #2eb450;
background: rgba(46, 180, 80, 0.06);
box-shadow: 0 2px 12px rgba(46, 180, 80, 0.15);
}
.tr-schedule-card--future {
border-left: 4px solid rgba(0, 123, 255, 0.4);
background: rgba(0, 123, 255, 0.03);
}
.tr-schedule-card--scheduled {
border-left: 4px solid rgba(0, 0, 0, 0.12);
}
.tr-schedule-card__header {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 0.5rem;
margin-bottom: 0.5rem;
}
.tr-schedule-card__header-left {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
}
.tr-schedule-card__number {
font-size: 0.875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.02em;
opacity: 0.85;
}
.tr-schedule-card__meta {
font-size: 0.75rem;
opacity: 0.65;
}
.tr-schedule-card__status {
flex-shrink: 0;
}
.tr-schedule-card__datetime {
font-size: 0.9375rem;
opacity: 0.8;
margin-bottom: 0.5rem;
}
.tr-schedule-card__match {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
padding-top: 0.75rem;
border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.tr-schedule-card__team {
width: 100%;
font-weight: 600;
font-size: 1rem;
line-height: 1.35;
text-align: center;
word-wrap: break-word;
}
.tr-schedule-card__team--home {
text-align: center;
}
.tr-schedule-card__team--away {
text-align: center;
}
.tr-schedule-card__score {
display: flex;
align-items: center;
gap: 0.25rem;
font-weight: 700;
font-size: 1.375rem;
white-space: nowrap;
}
.tr-schedule-card__score-sep {
opacity: 0.7;
}
.tr-schedule-card__score-extra {
font-size: 0.75rem;
font-weight: 500;
opacity: 0.7;
margin-left: 0.25rem;
} .tr-table-card {
background: rgba(0, 123, 255, 0.03);
border: 1px solid rgba(0, 0, 0, 0.08);
border-radius: 0.75rem;
padding: 1.25rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
margin-bottom: 1.25rem;
}
.tr-table-card__title {
font-size: 0.875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.02em;
opacity: 0.85;
margin-bottom: 0.75rem;
}
.tr-table-card__meta {
font-size: 0.75rem;
opacity: 0.65;
}
.tr-table-card__error {
font-size: 0.9375rem;
opacity: 0.95;
color: #b32d2e;
}
.tr-table-card__inner {
overflow-x: auto;
margin-top: 0.5rem;
}
.tr-table-card table {
width: 100%;
border-collapse: collapse;
font-size: 0.9375rem;
}
.tr-table-card thead th {
padding: 0.75rem;
font-size: 0.875rem;
font-weight: 600;
text-align: left;
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
opacity: 0.9;
}
.tr-table-card thead th.tr-align-center,
.tr-table-card tbody td.tr-align-center {
text-align: center;
}
.tr-table-card__th-sort {
cursor: pointer;
user-select: none;
}
.tr-table-card tbody td {
padding: 0.75rem;
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
opacity: 0.95;
}
.tr-table-card tbody tr:last-child td {
border-bottom: none;
}
.tr-table-card .tr-standings-toggle-mobile {
margin-top: 1rem;
text-align: center;
}
.tr-table-card .tr-standings-toggle-mobile button {
background: transparent;
border: none;
color: currentColor;
text-decoration: underline;
cursor: pointer;
font-size: 0.875rem;
padding: 0.5rem;
opacity: 0.8;
}
.tr-playoff-bracket-tree {
display: flex;
justify-content: center;
align-items: flex-start;
gap: 3rem;
padding: 2rem 0;
overflow-x: auto;
position: relative;
}
.tr-bracket-round {
display: flex;
flex-direction: column;
align-items: center;
min-width: 250px;
position: relative;
padding: 0 2rem;
}
.tr-bracket-matches {
display: flex;
flex-direction: column;
gap: 2rem;
align-items: center;
}
.tr-bracket-match {
position: relative;
}
.tr-bracket-match-box {
border: 2px solid currentColor;
border-radius: 0.5rem;
background: #fff;
min-width: 200px;
margin: 0.5rem 0;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.tr-bracket-connector-area {
width: 4rem;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
position: relative;
flex: 0 0 4rem;
padding-top: 3rem;
}
@media (min-width: 769px) {
.tr-schedule-cards {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 1200px) {
.tr-schedule-cards {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 768px) {
.tr-schedule-cards {
grid-template-columns: 1fr;
}
.tr-form-row {
grid-template-columns: 1fr;
}
.tr-form-section-header {
flex-direction: column;
align-items: flex-start;
gap: 1.25rem;
}
.tr-tabs {
flex-wrap: wrap;
}
.tr-tab {
padding: 0.5rem 1rem;
font-size: 0.875rem;
}
.tr-playoff-bracket-tree {
flex-direction: column;
overflow-x: visible;
}
.tr-bracket-round {
width: 100%;
min-width: auto;
padding: 0 1rem;
}
.tr-bracket-connector-area {
width: 100% !important;
height: 2rem !important;
padding-top: 0 !important;
flex: none !important;
} .tr-standings-table-desktop {
display: none !important;
}
.tr-standings-table-mobile {
display: table !important;
}
.tr-standings-toggle-mobile {
display: block;
} .tr-standings-table-desktop.show-full {
display: table !important;
}
.tr-standings-table-mobile.show-full {
display: none !important;
}
}
@media (min-width: 769px) { .tr-standings-table-desktop {
display: table !important;
}
.tr-standings-table-mobile {
display: none !important;
}
.tr-standings-toggle-mobile {
display: none;
}
}