/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 400px;
}

.title {
    text-align: center;
    color: #333;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

input, select, button {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background-color: #28a745;
    color: white;
    cursor: pointer;
}

/* Car Cards for Timing Section */
.car-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: white;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.time-input {
    width: 50px;
    margin-left: 5px;
}

/* Leaderboard Styles */
#leaderboardTable {
    width: 100%;
    border-collapse: collapse;
}

#leaderboardTable th, #leaderboardTable td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.green-text { color: green; }
.red-text { color: red; }
