﻿.table-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.highlight {
    font-weight: bold;
    color: #007bff;
}
.equal-height-btn {
    min-height: 45px; /* adjust as needed */
    font-size: 0.9rem;
}
.car-banner {
    background-image: url('img/Carpbuy.png'); /* Change to your car-buying themed image */
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
}

    .car-banner .overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1;
    }

    .car-banner .container {
        z-index: 2;
        position: relative;
    }
.custom-carousel-slide {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    height: 100%;
    min-height: 500px;
    background-color: #000; /* or any color to fill the empty space */
}
.carousel-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}
//slider
.slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    max-width: 100%;
    height: 60vh;
    min-height: 300px;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);    
    background: rgba(0,0,0,0.4);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0 12px;
    cursor: pointer;
    border-radius: 3px;
    user-select: none;
}

    .nav-btn.left {
        left: 10px;
    }

    .nav-btn.right {
        right: 10px;
    }

/* Responsive */
@media (max-width: 768px) {
    .slider {
        height: 40vh;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 30vh;
    }
}
//print
