body { 
    background-color: #f8f9fa; 
}

.navbar { 
    box-shadow: 0 2px 4px rgba(0,0,0,.1); 
}

.car-card {
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
    transition: transform .2s;
}

.car-card:hover {
    transform: scale(1.05);
}

.car-card img {
    height: 200px;
    object-fit: cover;
}

.car-card .card-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #007bff;
}

.footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
    margin-top: 50px; /* Memberi jarak dari konten di atasnya */
}
.car-gallery .main-image {
    width: 100%;
    height: 450px; /* Memberi tinggi yang tetap untuk gambar utama */
    object-fit: cover; /* Membuat gambar mengisi area tanpa distorsi */
    border-radius: .25rem;
    border: 1px solid #dee2e6;
    margin-bottom: 15px;
}

.car-gallery .thumbnail-list .thumb-item {
    height: 90px; /* Memberi tinggi yang tetap untuk setiap thumbnail */
    cursor: pointer;
    padding: 2px;
    border: 2px solid transparent;
    border-radius: .25rem;
    transition: border-color .2s;
}

.car-gallery .thumbnail-list .thumb-item:hover,
.car-gallery .thumbnail-list .thumb-item.active {
    border-color: #007bff; /* Memberi highlight pada thumbnail yang aktif/di-hover */
}

.car-gallery .thumbnail-list .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan semua thumbnail seragam */
}