.car-share-wrapper{
display:grid;
grid-template-columns:1fr 350px;
gap:40px;
}

/* LISTINGS SIDE */
.trip-card{
border:1px solid #ddd;
padding:12px;
margin-bottom:12px;
font-size:14px;
max-width:320px;
}

.trip-user{
font-weight:500;
}

.joined-count{
font-weight:bold;
margin-left:5px;
}

.trip-route strong{
color:green;
}

.from-label{
color:green;
font-weight:bold;
margin-right:5px;
}

.car-share-form input,
.car-share-form select{
width:100%;
padding:8px;
margin-bottom:10px;
}

/* BUTTON FIX */
.car-submit{
width:100%;
white-space:nowrap;
}

/* MOBILE */
@media(max-width:900px){

.car-share-wrapper{
grid-template-columns:1fr;
}

.td-tour-card{
max-width:100%;
}

.car-submit{
width:100%;
font-size:18px;
}

}