/* ChampPredict Base Styling */

body {
    background-color: #F8F9FA;
    font-family: Arial, sans-serif;
}

/* Header styling */
header {
    background-color: #0057B8;
    color: white;
}

/* Navigation links */
nav a {
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

nav a:hover {
    text-decoration: underline;
}

/* Main heading */
h1 {
    font-weight: bold;
}

.card {
    border: none;
    border-radius: 12px;
}

.card-title {
    color: #0057B8;
}

thead {
    background-color: #0057B8;
    color: white;
}

table td,
table th {
    vertical-align: middle;
}

/* Placeholder image boxes */
.placeholder-box {
    background-color: #e9ecef;
    border-radius: 10px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Improve headings slightly */
h3 {
    color: #0057B8;
}

/* Fixture page cards */
.card {
    border: none;
    border-radius: 10px;
}

/* Matchweek headings */
.card h2 {
    color: #0057B8;
    font-size: 1.75rem;
}

/* Fixture links */
.fixture-link {
    color: #0057B8;
    font-weight: 500;
    text-decoration: none;
}

.fixture-link:hover {
    text-decoration: underline;
}

/* Kickoff time text */
.fixture-time {
    margin-top: 4px;
}

/* List group spacing */
.list-group-item {
    padding-left: 0;
    padding-right: 0;
}

/* Auth card spacing */
.card {
    border-radius: 10px;
}

/* form spacing */
form p {
    margin-bottom: 12px;
}