/*=========================================
 QuettaTaxiBooking - dashboard.css
=========================================*/

.dashboard{
    width:90%;
    max-width:1300px;
    margin:40px auto;
}

.dashboard h1{
    text-align:center;
    color:#003366;
    margin-bottom:10px;
    font-size:36px;
}

.subtitle{
    text-align:center;
    color:#666;
    margin-bottom:40px;
    font-size:18px;
}

/* Taxi Grid */

.taxi-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

/* Taxi Card */

.taxi-card{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

    transition:.3s;

}

.taxi-card:hover{

    transform:translateY(-8px);

}

.taxi-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.taxi-card h2{

    color:#003366;

    text-align:center;

    margin:15px 0;

}

.taxi-card p{

    margin:10px 20px;

    font-size:15px;

}

.taxi-card button{

    width:calc(100% - 40px);

    margin:20px;

    padding:14px;

    border:none;

    border-radius:8px;

    background:#FFD700;

    color:#003366;

    font-size:17px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

.taxi-card button:hover{

    background:#ffbf00;

}

/* Status Badge */

.status{

    display:inline-block;

    margin:15px 20px;

    padding:6px 12px;

    background:#28a745;

    color:#fff;

    border-radius:20px;

    font-size:13px;

    font-weight:bold;

}

/* Welcome Box */

.welcome-box{

    background:#fff;

    padding:20px;

    border-left:5px solid #FFD700;

    border-radius:10px;

    margin-bottom:30px;

    box-shadow:0 5px 10px rgba(0,0,0,.08);

}

/* Footer Spacing */

footer{

    margin-top:60px;

}

/* Mobile */

@media(max-width:768px){

.dashboard h1{

    font-size:28px;

}

.subtitle{

    font-size:16px;

}

.taxi-card img{

    height:190px;

}

}