:root{

    --primary:#0ea47a;
    --primary-dark:#098a67;

}

body{

    margin:0;
    padding:0;
    font-family:
    'Segoe UI',
    sans-serif;

    background:#f5f7fb;

}

.driver-bg{

    background:
    linear-gradient(
    180deg,
    #0ea47a,
    #0b8f6a
    );

    min-height:100vh;

}

.login-container{

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    padding:20px;

}

.login-card{

    width:100%;
    max-width:420px;

    background:#fff;

    border-radius:25px;

    padding:35px;

    box-shadow:
    0 10px 40px rgba(
    0,0,0,.15);

}

.btn-driver{

    background:
    var(--primary);

    border:none;

    color:#fff;

    padding:12px;

    border-radius:12px;

    font-weight:600;

}

.btn-driver:hover{

    background:
    var(--primary-dark);

    color:#fff;

}

.form-control{

    border-radius:12px;

    height:48px;

}

.card-driver{

    border:none;

    border-radius:20px;

    box-shadow:
    0 2px 15px rgba(
    0,0,0,.06);

}

.driver-header{

    background:
    linear-gradient(
    135deg,
    #0ea47a,
    #0b8f6a
    );

    color:#fff;

    padding:25px;

    border-radius:
    0 0 25px 25px;

}

.stat-box{

    text-align:center;

}

.stat-number{

    font-size:28px;

    font-weight:700;

}

.bottom-nav{

    position:fixed;

    left:0;
    right:0;
    bottom:0;

    background:#fff;

    display:flex;

    justify-content:space-around;

    align-items:center;

    height:70px;

    border-top:
    1px solid #ddd;

    z-index:999;

}

.bottom-nav a{

    text-decoration:none;

    color:#666;

    font-size:12px;

    text-align:center;

}

.bottom-nav a.active{

    color:
    var(--primary);

    font-weight:600;

}

.page-content{

    padding-bottom:90px;

}

.driver-avatar{

    width:60px;
    height:60px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #fff;

}

.avatar-default{

    width:60px;
    height:60px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

}

.bottom-nav{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    height:70px;
    background:#fff;
    display:flex;
    justify-content:space-around;
    align-items:center;
    border-top:1px solid #ddd;
    z-index:9999;
}

.bottom-nav a{
    flex:1;
    text-align:center;
    text-decoration:none;
    color:#666;
    font-size:12px;
}

.bottom-nav a div{
    font-size:20px;
}

.bottom-nav a.active{
    color:#0ea47a;
    font-weight:bold;
}

/* ==========================
   BOTTOM NAVIGATION
========================== */

.driver-bottom-nav{

    position:fixed;

    bottom:0;
    left:0;
    right:0;

    height:72px;

    background:#fff;

    display:flex;

    justify-content:space-around;

    align-items:center;

    border-top:1px solid #e5e7eb;

    box-shadow:
    0 -5px 20px rgba(
    0,0,0,.05);

    z-index:9999;

}

.driver-bottom-nav a{

    flex:1;

    text-decoration:none;

    color:#9ca3af;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    position:relative;

    transition:.3s;

}

.driver-bottom-nav a i{

    font-size:20px;

    margin-bottom:4px;

}

.driver-bottom-nav a span{

    font-size:11px;

    font-weight:500;

}

.driver-bottom-nav a.active{

    color:#0ea47a;

}

.driver-bottom-nav a.active i{

    transform:translateY(-2px);

}

.nav-badge{

    position:absolute;

    top:8px;

    right:22px;

    background:#ef4444;

    color:#fff;

    min-width:18px;

    height:18px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:10px;

}

@media(max-width:576px){

.driver-bottom-nav{

    height:68px;

}

.driver-bottom-nav a i{

    font-size:18px;

}

}