.vrb-wrapper{
    max-width:1100px;
    margin:auto;
    padding:40px;
    background:#111827;
    color:white;
    border-radius:20px;
    font-family:Arial;
}

.vrb-header{
    text-align:center;
    margin-bottom:40px;
}

.vrb-section{
    margin-bottom:35px;
    background:#1f2937;
    padding:25px;
    border-radius:16px;
}

.vrb-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.vrb-grid input,
.vrb-grid select,
textarea{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#374151;
    color:white;
}

.vehicle-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.vehicle-card{
    background:#374151;
    padding:25px;
    border-radius:14px;
    text-align:center;
    cursor:pointer;
    transition:0.3s;
}

.vehicle-card:hover,
.vehicle-card.active{
    background:#2563eb;
}

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.tags span{
    background:#374151;
    padding:10px 14px;
    border-radius:30px;
}

textarea{
    min-height:120px;
}

.vrb-button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:14px;
    background:#2563eb;
    color:white;
    font-size:18px;
    cursor:pointer;
}

@media(max-width:768px){

    .vrb-grid,
    .vehicle-cards{
        grid-template-columns:1fr;
    }

}
