body {
    background-color: #f4f7fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding-top: 50px; /* espace pour la navbar fixe */
}


.navbar {
    background-color: #08214b;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar a {
    color: white;
    font-weight: bold;
    margin-right: 15px;
    text-decoration: none;
}

.navbar a:hover {
    color: white;
    font-weight: bold;
    margin-right: 15px;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.card {
    background-color: white;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.car-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.table th, .table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.table thead {
    background-color: #007bff;
    color: white;
}

.btn {
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: bold;
    text-transform: uppercase;
}

footer {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
