/* ============================================================
   NHL Design Language — Hockey Stats Viewer
   Tokens extracted from nhl.com/stats via designlang
   ============================================================ */

:root {
  --nhl-bg-dark:       #000000;
  --nhl-bg-dark-2:     #1a1a1a;
  --nhl-bg-light:      #ffffff;
  --nhl-bg-light-2:    #f8f8f8;
  --nhl-primary:       #0042bb;
  --nhl-primary-hover: #001e8c;
  --nhl-text-primary:  #121212;
  --nhl-text-secondary:#6f6f6f;
  --nhl-text-muted:    #98989e;
  --nhl-border:        #e0e0e0;
  --nhl-border-light:  #f2f2f2;
  --nhl-accent:        #eca200;
  --nhl-positive:      #00843d;
  --nhl-negative:      #c8102e;
  --nhl-shadow-card:   rgba(0,0,0,.08) 0px 16px 32px 0px,
                       rgba(0,0,0,.16) 0px 8px 16px 0px,
                       rgba(0,0,0,.24) 0px 4px 8px 0px;
}

/* Global */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--nhl-bg-light);
  color: var(--nhl-text-primary);
  margin: 0;
  font-size: 14px;
  line-height: 21px;
}

/* Bootstrap primary color overrides */
.btn-primary {
  background-color: var(--nhl-primary) !important;
  border-color: var(--nhl-primary) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  border-radius: 0;
  padding: 10px 32px;
}

.btn-primary:hover {
  background-color: var(--nhl-primary-hover) !important;
  border-color: var(--nhl-primary-hover) !important;
}

.btn-outline-primary {
  color: var(--nhl-primary) !important;
  border-color: var(--nhl-primary) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  border-radius: 0;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
  background-color: var(--nhl-primary) !important;
  color: white !important;
}

.card-header {
  background-color: var(--nhl-bg-light-2);
  border-bottom: 2px solid var(--nhl-primary);
}

/* ============================================================
   Navigation
   ============================================================ */
.nhl-navbar {
  background-color: var(--nhl-bg-dark) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 24px;
  min-height: 52px;
}

.nhl-navbar-brand {
  color: #ffffff !important;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-right: 24px;
}

.nhl-navbar .nav-link {
  color: var(--nhl-text-muted) !important;
  font-size: 13px;
  font-weight: 500;
  padding: 0 14px !important;
  height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nhl-navbar .nav-link:hover {
  color: #ffffff !important;
}

.nhl-navbar .nav-link.active {
  color: #ffffff !important;
  border-bottom: 2px solid var(--nhl-primary);
}

.nhl-navbar-logout {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: var(--nhl-text-muted) !important;
  font-size: 12px !important;
  padding: 4px 12px !important;
  border-radius: 4px !important;
}

.nhl-navbar-logout:hover {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Mobile navbar toggler */
.nhl-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .nhl-navbar .nav-link {
    height: auto;
    padding: 12px 14px !important;
    border-bottom: none;
    border-left: 2px solid transparent;
  }
  .nhl-navbar .nav-link.active {
    border-bottom: none;
    border-left: 2px solid var(--nhl-primary);
  }
}

/* Table Styles */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
}

.table th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    padding: 0.75rem;
    text-align: center;
}

.table td {
    padding: 0.75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 66, 187, 0.08);
}

/* Result Colors */
.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-warning {
    color: #ffc107 !important;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--nhl-shadow-card) !important;
}

.card-body {
    padding: 1.5rem;
}

.shadow-sm {
    box-shadow: var(--nhl-shadow-card) !important;
}

/* ============================================================
   KPI Tiles
   ============================================================ */
.kpi-tile  { text-align: center; padding: 16px 8px; }
.kpi-value { font-size: 36px; font-weight: 700; color: var(--nhl-primary); line-height: 1; }
.kpi-label { font-size: 11px; font-weight: 400; text-transform: uppercase;
             letter-spacing: 0.06em; color: var(--nhl-text-secondary); margin-top: 6px; }

/* ============================================================
   Player Roster Cards
   ============================================================ */
.player-card          { cursor: pointer; transition: transform .15s, box-shadow .15s;
                        border: 2px solid transparent !important; }
.player-card:hover    { transform: translateY(-3px); }
.player-card.selected { border-color: var(--nhl-primary) !important; }
.player-card-body     { padding: 10px 6px !important; }
.player-initials      { width: 52px; height: 52px; border-radius: 50%;
                        background: var(--nhl-primary); color: #fff;
                        font-size: 18px; font-weight: 700;
                        display: flex; align-items: center; justify-content: center;
                        margin: 0 auto 8px; }
.player-initials.goalie  { background: var(--nhl-accent); color: #000; }
.player-initials.defense { background: var(--nhl-bg-dark-2); color: #fff; }

/* Compact roster tiles on mobile — more cards per row, less scroll before
   reaching a selected player's stats. */
@media (max-width: 768px) {
    .player-initials { width: 38px; height: 38px; font-size: 14px; margin-bottom: 6px; }
    .player-card-body { padding: 8px 4px !important; }
    .player-card-body p.small { font-size: 11px; }
}

/* ============================================================
   Game Scorecards
   ============================================================ */
.game-scorecard          { cursor: pointer; transition: transform .15s; }
.game-scorecard:hover    { transform: translateY(-2px); }
.game-scorecard.selected { border-left: 4px solid var(--nhl-primary) !important; }
.game-score              { font-size: 32px; font-weight: 700; line-height: 1; }

/* ============================================================
   Recent Form Dots
   ============================================================ */
.form-dot   { display: inline-flex; align-items: center; justify-content: center;
              width: 28px; height: 28px; border-radius: 50%;
              font-size: 11px; font-weight: 700; color: #fff; margin: 0 3px; }
.form-dot-W { background: var(--nhl-positive); }
.form-dot-L { background: var(--nhl-negative); }
.form-dot-T { background: var(--nhl-accent); color: #000; }

/* ============================================================
   Dark Footer
   ============================================================ */
.nhl-footer { background-color: var(--nhl-bg-dark-2); color: #fff;
              font-size: 14px; padding: 24px 0; margin-top: 3rem; text-align: center; }

/* Position tab active indicator */
.nav-tabs .nav-link.active {
  border-bottom: 3px solid var(--nhl-primary) !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  background: transparent !important;
}
.nav-tabs .nav-link {
  border: none !important;
  border-bottom: 3px solid transparent !important;
  color: var(--nhl-text-secondary);
  padding: 10px 20px;
  transition: color .15s;
}
.nav-tabs .nav-link:hover {
  color: var(--nhl-primary);
  border-bottom-color: rgba(0,66,187,.3) !important;
}

/* Dropdown Styles */
.Select-control, .dash-dropdown .Select-control {
    border-radius: 0.25rem;
    border: 2px solid var(--nhl-primary);
    height: 44px;
    font-size: 1.1rem;
    background-color: #f8f9fa;
}

.Select-menu-outer, .dash-dropdown .Select-menu-outer {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border: 2px solid var(--nhl-primary);
    border-top: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.Select-value, .dash-dropdown .Select-value {
    line-height: 44px !important;
    padding-left: 10px;
}

.Select-placeholder, .dash-dropdown .Select-placeholder {
    line-height: 44px !important;
    padding-left: 10px;
    color: #6c757d;
}

.Select-input, .dash-dropdown .Select-input {
    height: 44px;
    padding-left: 10px;
}

.Select-option, .dash-dropdown .Select-option {
    padding: 12px 10px;
    border-bottom: 1px solid #e9ecef;
}

.Select-option:hover, .dash-dropdown .Select-option:hover {
    background-color: rgba(0, 66, 187, 0.1);
}

.Select-option.is-selected, .dash-dropdown .Select-option.is-selected {
    background-color: rgba(0, 66, 187, 0.2);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Adjust card padding for smaller screens */
    .card-body {
        padding: 1rem;
    }
    
    /* Make tables scrollable horizontally */
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Adjust font sizes */
    h1 {
        font-size: 1.8rem;
    }
    
    h4 {
        font-size: 1.3rem;
    }
    
    /* Stack columns on small screens */
    .row [class*="col-"] {
        margin-bottom: 1rem;
    }
    
    /* Adjust button group for mobile */
    .btn-group {
        display: flex;
        flex-wrap: wrap;
    }
    
    .btn-group .btn {
        flex: 1 0 auto;
        margin-bottom: 0.5rem;
    }
}

/* Collapsible Sections for Mobile */
.collapsible-section {
    margin-bottom: 1rem;
}

.collapsible-header {
    background-color: #f1f1f1;
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 0.25rem;
    border: 1px solid #dee2e6;
}

.collapsible-content {
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-top: none;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

/* Touch-friendly Controls */
@media (max-width: 768px) {
    /* Larger touch targets */
    .btn, .nav-link, .dropdown-item {
        padding: 0.5rem 1rem;
        min-height: 44px; /* Minimum touch target size */
    }
    
    /* More space between items */
    .nav-item, .dropdown-item {
        margin-bottom: 0.25rem;
    }
    
    /* Larger form controls */
    input, select, .Select-control {
        height: 44px;
    }
}

/* DataTable Styles */
.dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner th {
    background-color: #f1f1f1;
    font-weight: bold;
    text-align: center;
}

.dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner td {
    text-align: center;
}

/* Login Page Styles */
.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Footer Styles */
footer {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

/* Hockey-Themed Login Styles */
.hockey-login-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    position: relative;
}

.hockey-login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 32, 91, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 32, 91, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hockey-header {
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.hockey-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #00205b;
    border-radius: 15px;
    max-width: 400px;
    width: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hockey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00205b 0%, #ffffff 50%, #00205b 100%);
}

.hockey-card .card-header {
    background: linear-gradient(135deg, #00205b 0%, #001a4d 100%);
    color: white;
    border-bottom: none;
    padding: 1.25rem;
}

.hockey-card .card-header h4 {
    margin: 0;
    font-weight: 600;
}

.hockey-input {
    border: 2px solid #dee2e6;
    border-radius: 0;
    font-size: 1rem;
    padding: 0.75rem;
    transition: all 0.2s ease;
}

.hockey-input:focus {
    border-color: #00205b;
    box-shadow: 0 0 0 0.2rem rgba(0, 32, 91, 0.25);
}

.password-toggle-btn {
    border: 2px solid #dee2e6;
    border-left: none;
    border-radius: 0;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
}

.password-toggle-btn:hover {
    background-color: #e9ecef;
    border-color: #00205b;
    color: #00205b;
}

.password-toggle-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 32, 91, 0.25);
}

.hockey-login-btn {
    background: linear-gradient(135deg, #00205b 0%, #001a4d 100%);
    border: none;
    border-radius: 8px;
    padding: 0.875rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hockey-login-btn:hover {
    background: linear-gradient(135deg, #001a4d 0%, #001540 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 32, 91, 0.3);
}

.hockey-login-btn:active {
    transform: translateY(0);
}

.login-container {
    padding: 2rem 1rem;
}

/* Input Group Styling */
.input-group .input-group-text {
    background-color: #00205b;
    color: white;
    border: 2px solid #00205b;
    border-right: none;
    border-radius: 0;
}

.input-group .form-control {
    border-left: none;
}

.input-group .btn-outline-secondary {
    border-left: none;
}

/* Hockey Puck Animation */
.hockey-header i.fa-hockey-puck {
    animation: puckSpin 3s linear infinite;
}

@keyframes puckSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Optimizations for Hockey Login */
@media (max-width: 768px) {
    .hockey-card {
        margin: 1rem;
        max-width: none;
    }
    
    .login-container {
        padding: 1rem;
        min-height: 70vh;
    }
    
    .hockey-header {
        font-size: 1.5rem;
    }
    
    .hockey-login-btn {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .password-toggle-btn {
        padding: 0.75rem 0.875rem;
    }
}

/* Accessibility Improvements */
.password-toggle-btn:focus-visible {
    outline: 2px solid #00205b;
    outline-offset: 2px;
}

.hockey-input:focus-visible {
    outline: 2px solid #00205b;
    outline-offset: 2px;
}

/* Error Message Styling */
.login-error {
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    padding: 0.5rem 0.75rem;
    border-radius: 0 4px 4px 0;
    font-weight: 500;
}

/* Loading Indicators - Hockey Theme */
.dash-spinner {
    border-color: #00205b !important;
}

/* Spinning hockey puck — replaces Dash's default bouncing bars/dots/ring.
   Works for type="default" (.dash-default-spinner), type="circle"
   (.dash-sk-circle) and type="dot" (.dash-dot-spinner) since none of the
   dcc.Loading() call sites in this app pin a specific type. */
.dash-default-spinner,
.dash-sk-circle,
.dash-dot-spinner {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.dash-default-spinner > div,
.dash-sk-circle > div,
.dash-dot-spinner > div {
    display: none !important;
}

.dash-default-spinner::after,
.dash-sk-circle::after,
.dash-dot-spinner::after {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background:
        conic-gradient(from 0deg,
            #111 0deg 165deg,
            #fff 165deg 195deg,
            #111 195deg 360deg);
    box-shadow: 0 0 0 2px var(--nhl-accent, #eca200);
    animation: puck-spin 0.85s linear infinite;
}

@keyframes puck-spin {
    to { transform: rotate(360deg); }
}

/* Custom loading messages */
.loading-message {
    text-align: center;
    color: #00205b;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Enhanced loading container */
._dash-loading {
    position: relative;
    min-height: 100px;
}

._dash-loading::after {
    content: "Loading hockey stats...";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #00205b;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Progress Bar Styling */
.progress {
    height: 8px;
    background-color: rgba(0, 32, 91, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #00205b 0%, #001a4d 100%);
    transition: width 0.3s ease;
}

.progress-striped .progress-bar {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.progress-animated .progress-bar {
    animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }
    100% {
        background-position: 0 0;
    }
}

/* Loading States for Navigation */
.nav-link.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.nav-link.loading::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Hockey Puck Loading Animation */
.hockey-puck-loader {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    position: relative;
    margin: 20px auto;
    animation: puckSlide 2s ease-in-out infinite;
}

.hockey-puck-loader::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
}

@keyframes puckSlide {
    0%, 100% {
        transform: translateX(-20px);
    }
    50% {
        transform: translateX(20px);
    }
}

/* Loading Overlay */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(248, 249, 250, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 0.5rem;
}

.loading-overlay .loading-text {
    margin-top: 1rem;
    color: #00205b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.skeleton-text:last-child {
    width: 80%;
}

/* Enhanced Skeleton Components */
.skeleton-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.skeleton-card .card-header {
    background-color: #f8f9fa;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.skeleton-card .card-body {
    padding: 1.5rem;
}

.skeleton-line {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    display: block;
}

.skeleton-title {
    height: 1.5rem;
    width: 60%;
    margin-bottom: 0.75rem;
}

.skeleton-subtitle {
    height: 1.25rem;
    width: 40%;
    margin-bottom: 0.5rem;
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-text.short {
    width: 80%;
}

.skeleton-text.medium {
    width: 90%;
}

.skeleton-text.long {
    width: 100%;
}

.skeleton-button {
    height: 38px;
    width: 80px;
    border-radius: 0.375rem;
    display: inline-block;
    margin-right: 0.5rem;
}

.skeleton-table {
    width: 100%;
    border-collapse: collapse;
}

.skeleton-table th,
.skeleton-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

.skeleton-table th .skeleton-line {
    height: 1rem;
    width: 80px;
}

.skeleton-table td .skeleton-line {
    height: 0.875rem;
    width: 60px;
}

/* Skeleton Animation Variants */
.skeleton-pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

.skeleton-wave {
    animation: loading 1.5s infinite;
}

.skeleton-fade {
    animation: fade 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes fade {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive Skeleton Adjustments */
@media (max-width: 768px) {
    .skeleton-card .card-body {
        padding: 1rem;
    }
    
    .skeleton-title {
        height: 1.25rem;
        width: 70%;
    }
    
    .skeleton-subtitle {
        height: 1rem;
        width: 50%;
    }
    
    .skeleton-text {
        height: 0.875rem;
    }
    
    .skeleton-button {
        height: 44px; /* Larger touch targets on mobile */
        width: 100px;
    }
}

/* Enhanced Button States */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Disable loading animations for password toggle button */
.password-toggle-btn.loading {
    color: inherit !important;
    position: static;
}

.password-toggle-btn.loading::after {
    display: none !important;
}

.password-toggle-btn {
    pointer-events: auto !important;
}

/* Mobile Loading Optimizations */
@media (max-width: 768px) {
    ._dash-loading::after {
        font-size: 0.75rem;
        bottom: -25px;
    }
    
    .loading-overlay .loading-text {
        font-size: 0.8rem;
    }
    
    .hockey-puck-loader {
        width: 30px;
        height: 30px;
    }
    
    .hockey-puck-loader::before {
        width: 15px;
        height: 1.5px;
    }
}
