/* MostMatches App Styles */
body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

header {
    background-color: #2851a3;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px 8px 0 0;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

header h2 {
    margin: 5px 0 0;
    font-size: 20px;
    font-weight: normal;
}

.card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1, h2, h3 {
    color: #2851a3;
}

.important-notice {
    background-color: rgba(40, 81, 163, 0.1);
    border-left: 4px solid #2851a3;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.important-notice strong {
    color: #2851a3;
    font-weight: bold;
}

.last-updated {
    font-style: italic;
    color: #777;
    margin-top: 30px;
}

a {
    color: #2851a3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    color: #777;
    font-size: 14px;
    border-top: 1px solid #eee;
}

.button {
    display: inline-block;
    background-color: #2851a3;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.button:hover {
    background-color: #1a3c7d;
    text-decoration: none;
}

/* Admin Panel Styles */
.admin-controls {
    margin-bottom: 30px;
}

.admin-controls .button {
    margin-right: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.api-preview {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    font-family: monospace;
    white-space: pre;
}

/* Match cards styling based on screenshot */
.match-card {
    background-color: #2851a3;
    color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.match-status {
    color: #ff5722;
    font-weight: bold;
    margin-bottom: 5px;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.match-score {
    font-size: 24px;
    font-weight: bold;
}

.team-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: inline-block;
}

.league-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding: 5px 0;
}

.league-tab {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    padding: 8px 15px;
    white-space: nowrap;
}

.league-tab.active {
    background-color: #ff5722;
}
