

.vcselect-wrapper {
    width: 100%;
    margin: 0 auto;   /* Center it */
}


.vcselect-grid {
    display: grid;
    gap: 5px;
    padding: 5px;
    grid-template-columns: repeat(4, 1fr); /* Mobile: 4 across */
}

.btnVehClass {
    background-color:#bbbba6;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    color: rgb(255, 255, 255);
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* pushes text to the bottom */
    padding: 0.5rem;
    cursor: pointer;
}

.btnVehClass img {
    width: 100%;
    flex: 1; /* image takes all remaining space */
    object-fit: contain;
}


/* Desktop layout */
@media (min-width: 900px) {
    .vcselect-grid {
        grid-template-columns: repeat(8, 1fr); /* Desktop: 8 across */
    }
}
