.js-taxi-booking{
    max-width:700px;
    margin:40px auto;
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    font-family:Arial, Helvetica, sans-serif;
}

.js-taxi-booking h2{
    text-align:center;
    color:#111;
    margin-bottom:25px;
    font-size:32px;
}

.js-taxi-booking label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
}

.js-taxi-booking input,
.js-taxi-booking select{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:20px;
    font-size:16px;
    box-sizing:border-box;
}

.js-taxi-booking input:focus,
.js-taxi-booking select:focus{
    outline:none;
    border-color:#f4b400;
}

.js-taxi-booking button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:10px;
    background:#f4b400;
    color:#000;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.js-taxi-booking button:hover{
    background:#d89d00;
}

.jstd-success-message{
    background:#d1fae5;
    color:#065f46;
    border:1px solid #10b981;
    padding:15px;
    border-radius:10px;
    margin-bottom:20px;
    font-size:16px;
    font-weight:600;
}

.jstd-dashboard-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin:25px 0;
}

.jstd-card{
    background:#fff;
    border:1px solid #dcdcde;
    border-radius:10px;
    padding:20px;
    text-align:center;
    box-shadow:0 2px 6px rgba(0,0,0,.08);
}

.jstd-card h2{
    margin:0;
    font-size:34px;
    color:#2271b1;
}

.jstd-card p{
    margin-top:10px;
    font-size:15px;
    color:#50575e;
}

.jstd-card h2{
    font-size:34px;
    margin:0;
}

.jstd-card p{
    margin-top:10px;
    font-size:15px;
    color:#666;
}

#jstd-map{
    width:100%;
    height:400px;
    border-radius:10px;
    margin:20px 0;
    border:1px solid #ddd;
}
.jstd-search-results{
    border:1px solid #ddd;
    border-top:none;
    background:#fff;
    max-height:220px;
    overflow-y:auto;
    margin-top:-18px;
    margin-bottom:20px;
}

.jstd-result-item{
    padding:12px;
    cursor:pointer;
    border-bottom:1px solid #eee;
}

.jstd-result-item:hover{
    background:#f5f5f5;
}
.jstd-search-results{
    border:1px solid #ddd;
    border-top:none;
    background:#fff;
    max-height:220px;
    overflow-y:auto;
    margin-top:-18px;
    margin-bottom:20px;
    border-radius:0 0 10px 10px;
}

.jstd-result-item{
    padding:12px;
    cursor:pointer;
    border-bottom:1px solid #eee;
    transition:.2s;
}

.jstd-result-item:hover{
    background:#f4f4f4;
}