.club-garage-box{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.car {
    display: flex;           /* Make .car flex row */
    align-items: center;     /* Center items vertically */
    justify-content: center; /* Optional: center everything horizontally */
    gap: 20px;               /* Space between arrows and car content */
    flex: 1 1 auto;
    padding: 10px;
    margin: 10px;
    }
  
    .car-container{
        width: 300px;
        overflow-x: auto; /* allow side scrolling */
        scroll-snap-type: x mandatory; /* snapping effect */
        display: flex;
        flex-direction: row;
    }
  
    .car-stats{
        display: flex;
        flex-wrap: wrap;
        gap: 5px 5px;
        color:black;
        align-items: center;
        font-size:12px;
  
    }
  
    .dot-text {
        display: inline-flex;
        align-items: center;
    }
  
    .dot {
        width: 10px;
        height: 10px;
        background-color: #AEB8DE;
        border-radius: 50%;
        margin-right: 6px;
    }
  
    .circle-arrow {
        width: 30px;
        height: 30px;
        border: 2px solid black;
        color:black;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        cursor: pointer;
        user-select: none;
    }

    .car-slide{
        flex: 0 0 300px; /* fixed width */
        display: flex;
        justify-content: center;
        /* align-items: center; */
        font-size: 24px;
        scroll-snap-align: start; /* snap each slide */
        flex-direction: column;
    }
    .car-slides{
        display: flex;
    }