body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    max-width: 1200px;
    padding: 4px; /* Reduced from 6px */
}
#chat-container {
    border: 3px solid #002b5c;
    border-radius: 10px;
    background-color: #fff;
    height: 200px; /* Reduced from 320px */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#betting-container {
    border: 3px solid #002b5c;
    border-radius: 10px;
    background-color: #fff;
}
#chat-messages {
    overflow-y: auto;
    height: 140px; /* Reduced from 200px */
}
#chat-messages p {
    margin-bottom: 0.2rem; /* Reduced from 0.3rem */
    color: #333;
}
input[type="text"] {
    color: #333;
}
.bet-text {
    color: #333;
}
.btn-primary {
    background-color: #002b5c;
    border-color: #002b5c;
}
.btn-primary:hover {
    background-color: #001a3d;
    border-color: #001a3d;
}
.query-box {
    width: 60% !important;
    border: 1px solid #333;
    color: #333;
}
#toggle-btn,
#live-scores-section {
    display: none !important;
}
.header-row {
    flex-wrap: nowrap !important;
    position: sticky; /* Keep header visible */
    top: 0;
    z-index: 10;
    background-color: #f4f4f4;
}
.main-title {
    font-size: 1rem;
    font-weight: bold;
}
.subtitle {
    font-size: 0.875rem;
    font-weight: bold;
}
.date {
    font-size: 0.875rem;
}
.league-row {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    white-space: nowrap;
    margin-top: 0.125rem;
}
.bet-row {
    flex-wrap: nowrap !important;
    margin-bottom: 0.5rem; /* Reduced from 2rem */
}
.bet-details {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}
.bet-now {
    flex-shrink: 0;
}
.qr-row {
    flex-wrap: nowrap !important;
}
.qr-row p {
    font-size: 0.75rem;
}

@media (max-width: 600px) {
    .container {
        padding: 4px; /* Reduced from 6px */
    }
    #chat-container {
        padding: 4px; /* Reduced from 6px */
        height: 160px; /* Reduced from 200px */
    }
    #betting-container {
        padding: 4px; /* Reduced from 6px */
    }
    #chat-messages {
        height: 100px; /* Reduced from 140px */
    }
    .btn-sm {
        font-size: 0.75rem;
        padding: 2px 4px; /* Reduced from 5px */
    }
    h1 {
        font-size: 0.875rem;
    }
    h4 {
        font-size: 0.875rem;
    }
    p, .btn-link, .text-muted {
        font-size: 0.75rem;
    }
    .header-row {
        justify-content: space-between !important;
        margin-bottom: 0.125rem; /* Reduced from 0.25rem */
    }
    .header-row h1 {
        font-size: 0.875rem;
        margin-right: 3px; /* Reduced from 4px */
    }
    .header-row .main-title {
        font-size: 0.875rem;
        font-weight: bold;
    }
    .header-row .subtitle {
        font-size: 0.875rem;
        font-weight: bold;
    }
    .header-row .date {
        font-size: 0.875rem;
    }
    .league-row .btn-sm {
        font-size: 0.75rem;
        padding: 2px 4px;
        margin: 0 2px; /* Reduced from 3px */
    }
    .bet-row p {
        font-size: 0.75rem;
        max-width: 65%;
    }
    .bet-row .btn-link {
        font-size: 0.75rem;
        padding: 2px 4px;
    }
    .qr-row p {
        font-size: 0.7rem;
    }
}