/* /styles/default.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #088259;
    color: #FFF;
    text-align: center;
}

.container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    color: #222;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h1 {
    color: #0056b3;
}

.match-details {
    margin-top: 20px;
    padding: 10px;
}

#match-date-time, #venue, #match-teams {
    margin: 10px 0;
}

#team-logos img {
    width: 100px; /* Fixed width for logos */
    height: auto;
    margin: 10px;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    h1, h2 {
        font-size: 1.5rem;
    }
}

.odds-table-container {
    margin: 20px auto;
    width: 100%;
    max-width: 600px;
}

#odds-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

#odds-table th, #odds-table td {
    padding: 5px;
    border: 1px solid #ddd;
}

.bookmaker-logo {
    width: 100px;
    height: auto;
}

.terms {
    background-color: #f0f0f0; /* Subtle grey background */
    color: #333; /* Dark grey text */
    font-size: 0.8em; /* Smaller text size */
    padding: 15px;
    border-top: 1px solid #ccc; /* Light border on top */
    text-align: left;
}

.responsible-gambling {
    font-size: 0.8em; /* Smaller text size */
    color: #333; /* Dark grey text */
    margin-top: 10px;
}

.disclaimer {
    font-size: 0.8em; /* Smaller text size */
    color: #333; /* Dark grey text */
    margin-top: 10px;
}
