
.modify-search .fourthColumn button {
    border: none;
    outline: none;
    background-color: #FE9307;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 20px 30px;
}
.modify-search .fourthColumn button img {
    width: 70px;
}
.nav-tabs {
    width: fit-content;
}
.modify-search form.selfRental {
    width: fit-content;
}
.bookingForm form.outStation {
    width: fit-content;
}
.selectionBox label {
    font-size: 14px;
    font-weight: 500;
}
.modify-search select {
    border: none;
    background-color: transparent;
    color: rgba(30, 28, 36, 85%);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.modify-search .firstColumn {
    border: 2px solid #EBEBEB;
    width: fit-content;
    border-radius: 10px;
    position: relative;
}
.modify-search .firstColumn::before {
    content: " Pick up & Return City";
    position: absolute;
    width: fit-content;
    font-size: 12px;
    font-weight: 500;
    padding: 2px;
    background-color: #fff;
    top: -17%;
    left: 10%;
}
.modify-search .firstColumn.outFirst::before {
    content: " Pick up & Drop Location";
    position: absolute;
    width: fit-content;
    font-size: 12px;
    font-weight: 500;
    padding: 2px;
    background-color: #fff;
    top: -17%;
    left: 10%;
}
.modify-search .secondColumn::before {
    content: " Pickup Date";
    position: absolute;
    width: fit-content;
    font-size: 12px;
    font-weight: 500;
    padding: 2px;
    background-color: #fff;
    top: -17%;
    left: 10%;
}
.modify-search .thirdColumn::before {
    content: "Return Date";
    position: absolute;
    width: fit-content;
    font-size: 12px;
    font-weight: 500;
    padding: 2px;
    background-color: #fff;
    top: -17%;
    left: 10%;
}
.modify-search .secondColumn {
    border: 2px solid #EBEBEB;
    width: fit-content;
    border-radius: 10px;
    position: relative;
}
.modify-search .secondColumn input {
    width: 90px;
    border: none;
    outline: none;
    color: rgba(30, 28, 36, 85%);
    font-size: 14px;
    font-weight: 500;
}
.modify-search .secondColumn .line {
    width: 1px;
    height: 30px;
    background-color: #EBEBEB;
}
.modify-search .thirdColumn {
    border: 2px solid #EBEBEB;
    width: fit-content;
    border-radius: 10px;
    position: relative;
}
.modify-search .firstColumn input {
    width: 120px;
    border: none;
    outline: none;
    color: rgba(30, 28, 36, 85%);
    font-size: 14px;
    font-weight: 500;
}

.modify-search .thirdColumn input {
    width: 90px;
    border: none;
    outline: none;
    color: rgba(30, 28, 36, 85%);
    font-size: 14px;
    font-weight: 500;
}
.modify-search .thirdColumn .line {
    width: 1px;
    height: 30px;
    background-color: #EBEBEB;
}
.ui-timepicker-standard a {
    font-size: 14px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}
.ui-timepicker-standard {
    z-index: 1002 !important;
}
#note {
    font-size: 12px;
    font-weight: 600;
}

.moditext {
    font-weight: 500;
}

.seoPage {
    background: #f8f9fa;
    padding: 40px 0;
}

.seoPage .selfRental {
    justify-content: space-between;
}

.seoPage .firstColumn,
.seoPage .secondColumn,
.seoPage .thirdColumn,
.seoPage .fourthColumn {
    background: #fff;
    border-radius: 8px;
}

.seoPage input,
.seoPage select {
    border: none;
    outline: none;
    width: 100%;
}
/* ===== PREMIUM BOOK UI ===== */

.modify-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.modify-box label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.modify-box input,
.modify-box select {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* BUTTON */
.btn-theme {
    background: #FE9307 !important;
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-theme:hover {
    background: #e67e00 !important;
}



/* ===========================
SKYSCANNER STYLE CAR LIST
=========================== */

.carListingWrap{
display:flex;
flex-direction:column;
gap:20px;
}

/* CARD */

.skyCarCard{
background:#fff;
border:1px solid #ececec;
border-radius:22px;
padding:20px;
display:flex;
align-items:center;
justify-content:space-between;
gap:25px;
transition:.3s;
box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.skyCarCard:hover{
transform:translateY(-4px);
box-shadow:0 12px 35px rgba(0,0,0,.08);
border-color:#fe9307;
}

/* LEFT IMAGE */

.carLeft{
width:240px;
flex-shrink:0;
text-align:center;
}

.carImage{
width:100%;
height:160px;
object-fit:contain;
}

/* CENTER */

.carCenter{
flex:1;
}

.carTitle{
font-size:24px;
font-weight:700;
margin-bottom:4px;
color:#111;
}

.carType{
font-size:14px;
color:#777;
}

.miniStatus{
margin-top:10px;
margin-bottom:18px;
}

.availableText{
background:#eaf8ef;
color:#0c8b35;
padding:7px 14px;
border-radius:30px;
font-size:13px;
font-weight:600;
}

.soldText{
background:#ffe5e5;
color:#d11a2a;
padding:7px 14px;
border-radius:30px;
font-size:13px;
font-weight:600;
}

/* FEATURES */

.carFeatureRow{
display:flex;
align-items:center;
gap:18px;
margin-top:10px;
}

.featureItem{
display:flex;
align-items:center;
gap:8px;
font-size:14px;
font-weight:500;
color:#444;
}

.featureItem i{
color:#fe9307;
font-size:15px;
}

.vLine{
width:1px;
height:28px;
background:#e4e4e4;
}

/* RIGHT */

.carRight{
width:220px;
text-align:center;
flex-shrink:0;
display:flex;
flex-direction:column;
justify-content:center;
}

.priceBox small{
font-size:13px;
color:#888;
}

.priceBox h3{
font-size:34px;
font-weight:700;
color:#fe9307;
margin-top:4px;
margin-bottom:18px;
}

.bookNowSky{
display:inline-flex;
align-items:center;
justify-content:center;
background:#FE9307;
color:#fff;
padding:14px 26px;
border-radius:14px;
font-weight:600;
text-decoration:none;
transition:.3s;
font-size:15px;
box-shadow:0 6px 20px rgba(254,147,7,.25);
}

.bookNowSky:hover{
background:#e67f00;
transform:translateY(-2px);
color:#fff;
}

.soldBtn{
background:#ddd;
border:none;
padding:14px 30px;
border-radius:12px;
font-weight:600;
color:#555;
cursor:not-allowed;
}


/* =========================
DESKTOP LAYOUT
========================= */

/* =========================
BOOK PAGE LAYOUT
========================= */

.bookingLayout{
display:grid;
grid-template-columns:300px 1fr;
gap:28px;
align-items:start;
margin-top:20px;
}

.modifySidebar{
position:sticky;
top:20px;
height:fit-content;
z-index:10;
}

.carsContent{
min-width:0;
}

/* prevent first card displacement */
.carsContent .row{
margin:0;
}

.carsContent .col-xl-12{
padding:0;
}


/* =========================
MOBILE
========================= */

@media(max-width:991px){

.bookingLayout{
display:flex;
flex-direction:column;
}

.modifySidebar{
position:relative;
top:0;
}

}
.skyCarCard{
flex-direction:column;
text-align:center;
}

.priceDivider{
width:100%;
height:1px;
margin:10px 0;
}

.carFeatureRow{
justify-content:center;
flex-wrap:wrap;
}

.carRight{
width:100%;
}
}

/* LEFT */

.modifySidebar{
width:320px;
position:sticky;
top:20px;
flex-shrink:0;
}

/* RIGHT */

.carsContent{
flex:1;
}
.priceDivider{
width:1px;
height:140px;
background:linear-gradient(
to bottom,
transparent,
#e4e4e4,
transparent
);
}
.bookText{
margin-top:10px;
font-size:12px;
color:#888;
display:block;
line-height:18px;
}
.modifySidebar form{
background:#fff;
border-radius:24px;
padding:24px;
border:1px solid #ececec;
box-shadow:0 4px 20px rgba(0,0,0,.04);
}