.vehicle-buttons-section {
    width: 100%;
    background-color: #183347;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
}

.vehicle-button {
    background: white;
    color: #1A2A44;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.vehicle-button:hover {
    background: #d9d9d9;
}

.vehicle-button.reserve {
    background: #e5544e;
    color: white;
}

.vehicle-button.reserve:hover {
    background: #c9433e;
    cursor: pointer;
}
