   /* Algemeen stijl voor de indeling met drie kolommen */
.container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #f9f9f9;
}
body {
    font-family: 'Inter', sans-serif;
}



        /* Zoekbalk sectie bovenaan */
.search-bar {
    width: 100%;
    padding: 10px 0px;
    text-align: center;
    background-color: #f4f4f4;
}

        .search-bar input {
            padding: 8px;
            width: 70%;
            font-size: 16px;
            border: 1px solid #ccc;
        }

        /* Container voor de drie kolommen */
        .columns {
            display: flex;
            gap: 20px;
        }

        /* Linker kolom: filteren op automerk */
        .left-column {
            width: 20%;
            background-color: #f9f9f9;
            padding: 20px;
          /*  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
        }

        .left-column table {
            width: 100%;
            border-collapse: collapse;
        }

        .left-column td {
            padding: 10px;
            text-align: left;
        }

        /* Rechter kolom: lijst van auto's */
        .right-column {
            width: 75%;
        }
.car-box:hover {
    background-color: #f9f9f9;
}
.car-box {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    background-color: #ffffff;
    cursor: pointer;
    height: 250px;
    overflow: hidden;
	    transition: 0.05s;
}

        .sold {
            opacity: 0.5;
            background-color: #f4f4f4;
        }

        .status-label {
            color: red;
            font-weight: bold;
        }

        /* Carousel */
        .carousel {
            width: 100%;
            max-width: 450px; /* Zelfde breedte als je afbeelding */
            
        }

        .carousel-item img {
            width: 100%;
            height: auto;
        }

        /* Paginering */
        .pagination {
            margin-top: 20px;
            text-align: center;
        }

.pagination a {
    padding: 5px 10px;
    margin: 0 5px;
    text-decoration: none;
    background-color: #007BFF;
    color: white;
    border-radius: 50px;
    padding: 0px 10px;
}

        .pagination a.active {
            background-color: #0056b3;
        }
		/* Stijl voor wanneer er geen afbeelding beschikbaar is */
.no-image-text {
    width: 100%;
    text-align: center;
    font-size: 15px;
    color: #555;
    height: 100%;
}
.car-details {
    margin-left: 20px;
}a.car-link {
    color: black;
    text-decoration: solid;
    font-family: sans-serif;
}
