.vehicle-form {
    margin: 20px 0;
    display: flex;
    gap: 10px;
}
.vehicle-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid #0077ff;
    border-radius: 8px;
    font-size: 16px;
}
.vehicle-form button {
    padding: 12px 100px;
    background: #232323;
    color: #232323;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}
.vehicle-form button:hover {
    background: #005fcc;
}

.vehicle-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}
.vehicle-card h2 {
    margin-top: 0;
    font-size: 24px;
    color: #0077ff;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.vehicle-card h3 {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    border-left: 4px solid #0077ff;
    padding-left: 8px;
}
.vehicle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    font-size: 15px;
    margin-top: 10px;
}
.vehicle-grid div {
    padding: 8px 10px;
    background: #f9f9f9;
    border-radius: 6px;
}
.vehicle-error {
    padding: 12px;
    background: #ffe0e0;
    border: 1px solid #ff5555;
    border-radius: 8px;
    color: #b30000;
    margin-top: 15px;
}
