.match {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 20px;
    transition: transform 0.2s;
}

.match:hover {
    transform: translateY(-3px);
}

.red-alliance {
    color: #dc3545;
    font-weight: bold;
    padding: 2px 5px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 3px;
    margin-right: 5px;
}

.blue-alliance {
    color: #007bff;
    font-weight: bold;
    padding: 2px 5px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 3px;
    margin-left: 5px;
}

.match p {
    margin: 10px 0;
    font-size: 1.1em;
    line-height: 1.5;
}

.match p strong {
    font-size: 1.2em;
    color: #222;
}

.match p span.status-completed { color: #666; font-style: italic; }
.match p span.status-upcoming { color: #28a745; font-style: italic; }
.match p span.status-tie { color: #667; font-style: italic; }