/* Basic styles for the Wheelsy site */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

/* Header and Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
}



.logo span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.links a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.links a:hover {
    color: #007bff;
}

/* Vehicle listings */
.vehicle-list {
    list-style: none;
    padding: 0;
}

.vehicle-item {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 10px 0;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.vehicle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
