/* Styles for the custom race results template page */
body {
    background-color: #1C1C1C;
    margin: 0;
    padding: 0;
    font-family: "Titillium Web", sans-serif;
}
.mm-results-wrapper {
    max-width: 900px;
    margin: 50px auto;
    background-color: #262626;
    color: #fff;
    padding: 20px 40px 40px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.mm-results-wrapper h2 {
    color: #fff;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid #e10600; /* Example red color */
    padding-bottom: 15px;
    margin-top: 0;
    margin-bottom: 40px;
}
.mm-results-wrapper h3 {
    color: #eee;
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
}
.mm-results-table {
    width: 100%;
    border-collapse: collapse;
}
.mm-results-table th, 
.mm-results-table td {
    padding: 15px;
    text-align: left;
}
.mm-results-table thead tr {
    background-color: #1c1c1c;
    color: #aaa;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}
.mm-results-table tbody tr {
    border-bottom: 1px solid #333;
    transition: background-color 0.2s ease-in-out;
}
.mm-results-table tbody tr:last-child {
    border-bottom: none;
}
.mm-results-table tbody tr:hover {
    background-color: #3a3a3a;
}
.mm-results-table td:nth-child(1) { /* Position */
    font-weight: bold;
    font-size: 1.4em;
    color: #ddd;
    width: 80px;
    text-align: center;
}
.mm-results-table td:nth-child(4) { /* Points */
    font-weight: bold;
    font-size: 1.2em;
    width: 120px;
    text-align: center;
}
.mm-results-table .driver-name {
    font-weight: 700;
    font-size: 1.2em;
}
.mm-results-table .team-name {
    font-size: 1em;
    color: #aaa;
}