.crm-race-form, .crm-results {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.crm-form-row {
    margin-bottom: 20px;
}

.crm-car-selector {
    display: inline-block;
    width: 45%;
    vertical-align: top;
}

.crm-vs {
    display: inline-block;
    width: 8%;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 2;
}

.crm-time-input {
    display: inline-block;
    width: 48%;
    margin-right: 2%;
}

.crm-car-select, input[type="text"], input[type="number"], input[type="datetime-local"], textarea, select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.crm-submit-button {
    background: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.crm-submit-button:hover {
    background: #45a049;
}

.car-details {
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.crm-results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.crm-results-table th, .crm-results-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.crm-results-table th {
    background-color: #4CAF50;
    color: white;
}

.crm-results-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.crm-results-table tr:hover {
    background-color: #ddd;
}

.success {
    color: green;
}

.error {
    color: red;
}