  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    min-height: 100vh;
  }

  .main-content {
    padding-top: 20px;
  }

  .main-content h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    background: linear-gradient(45deg, #00ff00, #00cc88);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Calendar Controls */
  .calendar-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
  }

  .date-input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 10px 15px;
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(5px);
  }

  .date-input:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
  }

  .date-btn {
    background: linear-gradient(45deg, #00ff00, #00cc88);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
  }

  .date-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.4);
  }

  .selected-date {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #00ff00;
    font-weight: bold;
  }

  /* Loading Spinner */
  .loading {
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
    color: #00ff00;
  }

  .spinner {
    border: 4px solid rgba(0, 255, 0, 0.1);
    border-left: 4px solid #00ff00;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px auto;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* AFL Ladder Widget */
  .afl-ladder-section {
    max-width: 1000px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
  }

  .afl-ladder-toggle {
    background: rgba(0, 255, 0, 0.08);
    border: 1px solid rgba(0, 255, 0, 0.25);
    color: #00ff00;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
  }

  .afl-ladder-toggle:hover {
    background: rgba(0, 255, 0, 0.15);
  }

  .afl-ladder-content {
    margin-top: 12px;
    overflow-x: auto;
  }

  .afl-ladder-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
  }

  .afl-ladder-table th {
    background: rgba(0, 255, 0, 0.12);
    color: #00cc88;
    padding: 8px 10px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
  }

  .afl-ladder-table td {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
  }

  .afl-ladder-table tr:hover td {
    background: rgba(255, 255, 255, 0.04);
  }

  .afl-ladder-table .finals-row td {
    color: #00ff88;
  }

  .afl-ladder-table .finals-row td:first-child {
    font-weight: 700;
  }

  .afl-pos-num {
    font-weight: 700;
    font-size: 0.9rem;
    width: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
  }

  .finals-row .afl-pos-num {
    background: rgba(0, 255, 136, 0.18);
    color: #00ff88;
  }

  .afl-ladder-team-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
    border-radius: 3px;
  }

  .afl-finals-badge {
    font-size: 0.65rem;
    background: rgba(0,255,136,0.15);
    color: #00ff88;
    border: 1px solid rgba(0,255,136,0.3);
    border-radius: 4px;
    padding: 1px 5px;
    margin-left: 6px;
    font-weight: 700;
    letter-spacing: 0.4px;
    vertical-align: middle;
  }

  /* AFL Game Containers */
  #afl-game-containers {
    display: grid;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }

  /* Game Card */
  .gc-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(170deg, #111827 0%, #0a0f1e 100%);
    border: 1.5px solid rgba(255,255,255,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .gc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #14b8a6, #22c55e);
  }
  .gc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(20,184,166,0.12);
    border-color: rgba(20,184,166,0.25);
  }
  .gc-card.live-game {
    border-color: rgba(239,68,68,0.3);
  }
  .gc-card.live-game::before {
    background: linear-gradient(90deg, #ef4444, #f59e0b);
  }

  .gc-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 0;
  }
  .gc-datetime {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
  }
  .gc-status-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .gc-status-pill.pre {
    background: rgba(20,184,166,0.12);
    color: #14b8a6;
  }
  .gc-status-pill.in {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
    animation: gc-pulse 1.5s ease-in-out infinite;
  }
  .gc-status-pill.post {
    background: rgba(148,163,184,0.1);
    color: #94a3b8;
  }
  @keyframes gc-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
  }

  .gc-versus {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 14px 12px 10px;
    position: relative;
  }
  .gc-versus::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(20,184,166,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .gc-card.live-game .gc-versus::before {
    background: radial-gradient(ellipse at 50% 60%, rgba(239,68,68,0.08) 0%, transparent 60%);
  }

  .gc-team-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 0;
  }
  .gc-team-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
    max-width: 100%;
    overflow: hidden;
  }
  .gc-avatar {
    width: 130px;
    height: 130px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 2px solid rgba(0,255,136,0.15);
    box-shadow: 0 6px 24px rgba(0,0,0,0.45), 0 0 16px rgba(0,255,136,0.06);
    margin-bottom: 8px;
  }
  .gc-card.live-game .gc-avatar {
    border-color: rgba(239,68,68,0.2);
    box-shadow: 0 6px 24px rgba(0,0,0,0.45), 0 0 16px rgba(239,68,68,0.08);
  }
  .gc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .gc-team-logo {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    padding: 3px;
  }
  .gc-team-label {
    font-size: 12px;
    font-weight: 700;
    color: #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .gc-score {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    margin-top: 6px;
  }
  .gc-vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    flex-shrink: 0;
    width: 40px;
    position: relative;
    z-index: 1;
  }
  .gc-vs-text {
    font-size: 14px;
    font-weight: 900;
    color: rgba(255,255,255,0.15);
    letter-spacing: 2px;
  }

  /* Quarter scores table */
  .gc-quarters {
    width: 100%;
    padding: 8px 18px 12px;
    overflow-x: auto;
  }

  .gc-quarters-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
  }

  .gc-quarters-table th {
    color: #64748b;
    font-weight: 700;
    padding: 3px 6px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .gc-quarters-table td {
    text-align: center;
    padding: 4px 6px;
    color: #cbd5e1;
    font-size: 12px;
  }

  .gc-quarters-table td:first-child {
    text-align: left;
    color: #94a3b8;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .gc-quarters-table td.total-col {
    font-weight: 900;
    color: #fff;
    font-size: 13px;
    border-left: 1px solid rgba(255,255,255,0.1);
  }

  .gc-card .betting-section,
  .gc-card .stats-section,
  .gc-card .game-action-buttons,
  .gc-card .hie-signal-hint,
  .gc-card .ph-markets {
    padding-left: 18px;
    padding-right: 18px;
  }
  .gc-card .game-action-buttons {
    display: flex; gap: 10px; padding-bottom: 18px;
  }
  .gc-card .game-action-buttons .create-bet-btn { flex: 1; }
  .gc-card .game-action-buttons .add-to-parlay-btn { flex: 0 0 auto; }
  .gc-card .stats-section {
    padding-bottom: 4px;
  }
  .gc-card .betting-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
    padding-bottom: 4px;
  }

  /* Venue row */
  .gc-venue {
    padding: 4px 18px 10px;
    font-size: 11px;
    color: #4b5563;
    text-align: center;
  }

  /* Betting Odds Section */
  .betting-section {
    width: 100%;
    margin: 10px 0;
  }

  .betting-toggle-btn {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
  }

  .betting-toggle-btn:hover {
    background: rgba(0, 255, 0, 0.2);
  }

  .betting-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }

  .betting-content {
    margin-top: 10px;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .betting-odds-section {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
  }

  .betting-provider {
    font-size: 0.9rem;
    color: #00cc88;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .betting-data {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .betting-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .betting-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
  }

  .betting-label {
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .betting-value {
    font-size: 1rem;
    color: #00ff00;
    font-weight: bold;
  }

  /* Stats Section */
  .stats-section {
    width: 100%;
    margin: 8px 0;
  }

  .stats-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #94a3b8;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
  }

  .stats-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
  }

  .stats-arrow {
    font-size: 0.8rem;
  }

  .stats-content {
    margin-top: 8px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  .loading-stats {
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    padding: 10px;
  }

  .stats-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .team-records {
    background: rgba(0, 255, 0, 0.04);
    border: 1px solid rgba(0, 255, 0, 0.12);
    border-radius: 8px;
    padding: 10px;
  }

  .team-records h4 {
    color: #00cc88;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }

  .records {
    display: flex;
    justify-content: space-around;
    gap: 10px;
  }

  .record {
    text-align: center;
  }

  .record strong {
    display: block;
    font-size: 0.8rem;
    color: #e2e8f0;
    margin-bottom: 3px;
  }

  .record span {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 700;
  }

  .team-stats-section h4 {
    color: #00cc88;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }

  .team-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .stat-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-value {
    font-size: 0.88rem;
    color: #e2e8f0;
    font-weight: 600;
  }

  .stat-value:first-child {
    text-align: right;
  }

  .stat-value:last-child {
    text-align: left;
  }

  .stat-label {
    font-size: 0.7rem;
    color: #64748b;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }

  .stats-error {
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    padding: 12px;
  }

  .create-bet-btn {
    width: 100%;
    background: linear-gradient(45deg, #00ff00, #00cc88);
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .create-bet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.4);
  }

  .add-to-parlay-btn {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .add-to-parlay-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
  }

  .no-games {
    text-align: center;
    padding: 50px 20px;
    color: #64748b;
    grid-column: 1 / -1;
  }

  .no-games h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #94a3b8;
  }

  .no-games p {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  /* Sport Navigation Buttons */
  .sports-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
    padding: 0 20px;
  }

  .sports-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
  }

  .sports-btn:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: #00ff00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
  }

  .sports-btn img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
  }

  .sports-btn a {
    text-decoration: none;
    display: block;
  }

  /* Back button */
  .back-button {
    text-align: center;
    margin: 30px 0 60px;
  }

  .back-button a {
    color: #00ff00;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 12px 28px;
    border: 2px solid #00ff00;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .back-button a:hover {
    background: rgba(0, 255, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
  }

  /* ── Stats Panel ─────────────────────────────────────────────────────── */
  .stats-section {
    margin-top: 12px;
  }

  .stats-toggle-btn {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ccc;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-family: inherit;
    transition: background 0.2s;
  }

  .stats-toggle-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
  }

  .stats-arrow {
    font-size: 0.75rem;
    opacity: 0.7;
  }

  .stats-content {
    margin-top: 8px;
  }

  .loading-stats,
  .stats-error {
    text-align: center;
    color: #888;
    font-size: 0.82rem;
    padding: 12px 0;
  }

  .stats-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* Season record row */
  .team-records h4 {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: #4ade80;
    margin: 0 0 6px;
  }

  .records {
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }

  .record {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    padding: 6px 10px;
  }

  .record strong {
    font-size: 0.75rem;
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }

  .record span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
  }

  /* Team stats table */
  .team-stats-section h4 {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: #4ade80;
    margin: 0 0 6px;
  }

  .team-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    overflow: hidden;
  }

  .stat-item {
    display: grid;
    grid-template-columns: 1fr 140px 1fr;
    align-items: center;
    padding: 7px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-item:nth-child(even) {
    background: rgba(255,255,255,0.03);
  }

  .stat-item .stat-value:first-child {
    text-align: right;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
  }

  .stat-item .stat-label {
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
  }

  .stat-item .stat-value:last-child {
    text-align: left;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .main-content {
      padding-top: 20px;
    }

    #afl-game-containers {
      grid-template-columns: 1fr;
      padding: 12px;
      gap: 14px;
    }

    .calendar-controls {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 8px;
      padding: 12px;
      margin: 0 12px 20px;
      max-width: 100%;
    }

    .calendar-controls .date-btn:first-child {
      grid-column: 1;
      grid-row: 1;
      justify-self: end;
    }

    .calendar-controls .date-input {
      grid-column: 2;
      grid-row: 1;
      justify-self: center;
    }

    .calendar-controls .date-btn:nth-child(3) {
      grid-column: 3;
      grid-row: 1;
      justify-self: start;
    }

    .calendar-controls .date-btn:last-child {
      grid-column: 1 / -1;
      grid-row: 2;
      justify-self: center;
    }

    .date-btn {
      font-size: 0.7rem;
      padding: 6px 10px;
      min-height: unset;
      min-width: unset;
      white-space: nowrap;
    }

    .date-input {
      font-size: 0.8rem;
      padding: 6px 8px;
      min-height: unset;
      width: auto;
    }

    .gc-team-logo {
      width: 48px !important;
      height: 48px !important;
      max-width: 48px !important;
      max-height: 48px !important;
    }

    .gc-score {
      font-size: 28px;
    }

    .gc-team-label {
      font-size: 11px;
    }

    .afl-ladder-section {
      padding: 0 12px;
    }

    .afl-ladder-table {
      font-size: 0.8rem;
    }

    .afl-ladder-table th,
    .afl-ladder-table td {
      padding: 6px 8px;
    }
  }

  @media (max-width: 480px) {
    .gc-quarters-table {
      font-size: 10px;
    }
    .gc-quarters-table td {
      padding: 3px 4px;
    }
  }
