:root {
    --primary-blue: #4051B5;
    --hover-blue: #4658c7;
    --dark-blue: #3544A2;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;
    --text-primary: #333333;
    --text-secondary: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-gray);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header Styles */
.header {
    background-color: var(--primary-blue);
    width: 100%;
    position: relative;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    padding: 10px 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
}

.header-nav {
    display: flex;
    gap: 5px;
    align-items: center;
}

.header-right {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.2s;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Secondary Header for Selectors */
.secondary-header {
    background-color: rgba(64, 81, 181, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
}

.secondary-header .header-container {
    justify-content: flex-end;
}

.header-options {
    display: flex;
    gap: 20px;
    align-items: center;
}

.format-selector,
.timezone-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.format-selector label,
.timezone-selector label {
    color: white;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.format-selector select,
.timezone-selector select {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    min-width: 100px;
}

.format-selector select option,
.timezone-selector select option {
    background: white;
    color: black;
    padding: 8px;
}

/* Sports Navigation */
.sports-nav {
    background-color: var(--primary-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    width: 100%;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.sports-list {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.sport-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.sport-link:hover,
.sport-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.sport-link i {
    font-size: 20px;
    min-width: 20px;
}

.sport-name {
    font-size: 14px;
    font-weight: 500;
}

.game-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}

/* Date Navigation - CENTERED */
.date-nav {
    background-color: white;
    border-bottom: 1px solid var(--border-gray);
    padding: 15px 0;
    margin-bottom: 20px;
}

.date-nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.date-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.date-slider {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.date-option {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s ease;
}

.date-option:hover {
    background-color: var(--light-gray);
}

.date-option.active {
    background-color: var(--primary-blue);
    color: white;
}

.date-label {
    font-weight: 600;
    font-size: 16px;
}

.date-value {
    font-size: 14px;
    color: inherit;
    opacity: 0.8;
}

/* Show All Games Toggle */
.show-all-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-blue);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-label {
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
    user-select: none;
}

/* Main Layout */
.main-layout {
    flex: 1;
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 250px minmax(600px, 1fr) 300px;
    gap: 20px;
    min-height: calc(100vh - 250px);
}

/* Left Sidebar */
.left-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.sidebar-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
}

.sidebar-title {
    padding: 15px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-gray);
}

.leagues-list {
    list-style: none;
}

.league-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.league-item:hover,
.league-item.active {
    background-color: var(--light-gray);
}

.league-name {
    font-size: 14px;
    flex: 1;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    min-width: 0;
}

.leagues-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.league-section {
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 20px;
    display: block;
}

.league-games {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.league-header {
    padding: 15px;
    border-bottom: 1px solid var(--border-gray);
}

.league-title {
    font-size: 18px;
    font-weight: 600;
}

.league-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.odds-update-time {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Game Card */
.game-card {
    width: 100%;
    border-bottom: 1px solid var(--border-gray);
    background: white;
}

.game-card:last-child {
    border-bottom: none;
}

.game-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
}

.game-time {
    color: var(--text-secondary);
    font-size: 14px;
}

.game-countdown {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 500;
}

.game-status {
    font-weight: 500;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 4px;
}

.game-status.started {
    background-color: #ff9800;
    color: white;
}

.game-status.final {
    background-color: #757575;
    color: white;
}

.game-status.live {
    background-color: #d32f2f;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.team-score {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    min-width: 30px;
}

/* Odds Table */
.odds-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.odds-table th,
.odds-table td {
    padding: 12px 15px;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.odds-table th:first-child,
.odds-table td:first-child {
    text-align: left;
    width: 30%;
}

.odds-table th {
    width: 23.33%;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    background-color: white;
}

.odds-table tr:hover {
    background-color: #f8f9fa;
}

.team-name {
    font-weight: 500;
}

.odds-value {
    position: relative;
    padding-top: 15px;
    font-weight: 600;
}

.odds-source {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 10px;
    color: var(--text-secondary);
    text-align: center;
}

.score {
    font-size: 18px;
    font-weight: 600;
    text-align: center !important;
}

/* Game Card Actions */
.game-card-actions {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border-gray);
}

.view-details-button {
    flex: 1;
    padding: 12px;
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.view-details-button:hover {
    background-color: var(--hover-blue);
}

.betmgm-cta-button {
    flex: 1;
    padding: 12px;
    background-color: #f5a623;
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.betmgm-cta-button:hover {
    background-color: #e09617;
}

.betmgm-cta-button i {
    font-size: 16px;
}

/* Expand Button */
.expand-button {
    width: 100%;
    color: var(--primary-blue);
    background: none;
    border: none;
    border-top: 1px solid var(--border-gray);
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.expand-button:hover {
    background-color: var(--light-gray);
}

/* Expanded Odds */
.expanded-odds {
    display: none;
    padding: 15px;
    border-top: 1px solid var(--border-gray);
    background-color: #f8f9fa;
}

.expanded-odds-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-gray);
}

.tab {
    padding: 10px 0;
    border: none;
    background: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.tab.active {
    color: var(--primary-blue);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-blue);
}

.expanded-odds-table {
    width: 100%;
    border-collapse: collapse;
}

.expanded-odds-table th,
.expanded-odds-table td {
    padding: 15px;
    vertical-align: top;
    border-bottom: 1px solid var(--border-gray);
}

.bookmaker-name {
    font-weight: 500;
    min-width: 120px;
}

.betmgm-row {
    background-color: rgba(245, 166, 35, 0.05);
    border-left: 3px solid #f5a623;
}

.betmgm-row .bookmaker-name {
    font-weight: 700;
    color: #f5a623;
    font-size: 15px;
}

.betmgm-bet-now {
    margin-top: 10px;
}

.bet-now-btn {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #f5a623 0%, #e09617 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(245, 166, 35, 0.3);
}

.bet-now-btn:hover {
    background: linear-gradient(135deg, #e09617 0%, #d08916 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(245, 166, 35, 0.4);
}

/* Right Sidebar */
.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.next-game {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 15px;
}

.next-game-header {
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gray);
}

.next-game-info {
    margin-bottom: 15px;
}

.next-game-league {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.next-game-time {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.countdown {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: 15px 0;
}

.next-game-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.team {
    flex: 1;
    text-align: center;
}

.team-odds {
    margin-top: 5px;
    font-weight: 600;
}

.vs {
    font-size: 24px;
    color: var(--text-secondary);
}

.ad-space {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hottest Handicappers Sidebar - In Left Sidebar */
.hottest-handicappers-sidebar {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 15px;
}

.sidebar-section-header {
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.sidebar-section-header i {
    color: #ff5722;
    font-size: 20px;
}

.handicapper-list-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.handicapper-item-sidebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.handicapper-item-sidebar:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.handicapper-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.handicapper-details-sidebar {
    flex: 1;
    min-width: 0;
}

.handicapper-username {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.handicapper-streak-small {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #ff5722;
    margin-bottom: 2px;
}

.handicapper-streak-small i {
    font-size: 14px;
}

.handicapper-record-small {
    font-size: 11px;
    color: var(--text-secondary);
}

.view-all-sidebar {
    display: block;
    text-align: center;
    padding: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.view-all-sidebar:hover {
    color: var(--hover-blue);
}

.view-all-sidebar i {
    font-size: 14px;
}

.no-handicappers-sidebar {
    text-align: center;
    padding: 20px 10px;
    color: var(--text-secondary);
}

.no-handicappers-sidebar p {
    font-size: 13px;
    margin-bottom: 12px;
}

.start-picking-small {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.start-picking-small:hover {
    background: var(--hover-blue);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px 0;
    margin-top: auto;
    width: 100%;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: white;
}

.footer-copyright {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 15px 20px;
    text-align: center;
    border-top: 1px solid #555;
    font-size: 14px;
    color: #ccc;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
    font-size: 11px;
    line-height: 1.6;
    color: #999;
}

.footer-disclaimer p {
    margin-bottom: 12px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Line Movement Button & Panel */
.line-movement-button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background-color: #5c6bc0;
    color: white;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.line-movement-button:hover {
    background-color: #4a5ab5;
}

.line-movement-button.active {
    background-color: #3949ab;
}

.line-movement-panel {
    margin-top: 12px;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.line-movement-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.line-movement-table thead th {
    background: #f8f9fa;
    padding: 8px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    color: #666;
    border-bottom: 2px solid #dee2e6;
}

.line-movement-table thead th:first-child {
    text-align: left;
}

.line-movement-table tbody td {
    padding: 6px 12px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
}

.line-movement-table tbody td:first-child {
    text-align: left;
}

.line-movement-table tbody tr:hover {
    background: #f8f9fa;
}

.lm-time {
    color: #666;
    font-size: 12px;
}

.lm-main {
    font-weight: 600;
    display: block;
}

.lm-juice {
    font-size: 11px;
    color: #888;
}

.lm-ml.positive {
    color: #388e3c;
    font-weight: 600;
}

.lm-ml.negative {
    color: #d32f2f;
    font-weight: 600;
}

.no-movement {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Utility Classes */
.positive-odds {
    color: #388e3c;
}

.negative-odds {
    color: #d32f2f;
}

.no-games {
    padding: 40px;
    text-align: center;
    color: var(--text-secondary);
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .main-layout {
        grid-template-columns: 200px minmax(500px, 1fr) 250px;
    }
}

@media (max-width: 992px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
    
    .left-sidebar,
    .right-sidebar {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-nav,
    .header-right {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 0;
    }
    
    .header-nav.active,
    .header-right.active {
        display: flex;
    }
    
    .header-nav .nav-link,
    .header-right .nav-link {
        width: 100%;
        padding: 12px 0;
        border-radius: 0;
    }
    
    /* Secondary header options */
    .header-options {
        justify-content: flex-end;
        width: 100%;
        gap: 10px;
    }
    
    .format-selector label,
    .timezone-selector label {
        display: none;
    }
    
    .format-selector select,
    .timezone-selector select {
        min-width: 90px;
        font-size: 12px;
        padding: 5px 8px;
    }
    
    /* Sports nav */
    .sport-name {
        display: none;
    }
    
    .sport-link {
        padding: 8px;
    }
    
    .sports-list {
        gap: 10px;
    }
    
    /* Date nav */
    .date-nav-wrapper {
        gap: 10px;
    }
    
    .date-slider {
        gap: 10px;
    }
    
    .date-option {
        padding: 8px 15px;
    }
    
    .date-label {
        font-size: 14px;
    }
    
    .date-value {
        font-size: 12px;
    }
    
    .show-all-toggle {
        margin-left: 0;
    }
    
    /* Game card actions */
    .game-card-actions {
        flex-direction: column;
    }

    .view-details-button,
    .betmgm-cta-button,
    .line-movement-button {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .betmgm-cta-button {
        border-bottom: none;
    }

    .line-movement-button {
        width: 100%;
        justify-content: center;
        border-radius: 0;
        border-bottom: none;
    }

    /* Line movement panel overflow */
    .line-movement-panel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .line-movement-table {
        min-width: 480px;
    }

    /* Expanded odds table overflow */
    .expanded-odds {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .expanded-odds-table {
        min-width: 500px;
    }

    /* Odds table */
    .odds-table {
        font-size: 13px;
    }

    .odds-table th,
    .odds-table td {
        padding: 8px 10px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-copyright,
    .footer-disclaimer {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    .sports-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .game-count {
        font-size: 11px;
        padding: 1px 6px;
    }
    
    .odds-table th,
    .odds-table td {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .team-name {
        font-size: 13px;
    }
}

/* Line Movements Widget */
.line-movements-widget {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 15px;
}

.line-movements-controls {
    margin-bottom: 15px;
}

.line-move-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 10px;
    background: white;
    cursor: pointer;
}

.line-move-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.line-move-tab {
    padding: 8px;
    background: #f8f9fa;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-primary);
}

.line-move-tab:hover {
    background: #e9ecef;
}

.line-move-tab.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.line-movements-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    min-height: 200px;
}

.line-move-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
    color: var(--text-secondary);
}

.line-move-loading i {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.line-move-loading p {
    font-size: 13px;
}

.no-movements {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
}

.line-move-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    gap: 10px;
}

.line-move-item:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.line-move-teams {
    flex: 1;
    min-width: 0;
}

.line-move-matchup {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-move-team {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-move-change {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.line-move-change.move-up {
    color: #388e3c;
}

.line-move-change.move-down {
    color: #d32f2f;
}