.mobile-nav {
    background: #F1F1F1;
    position: fixed;
    bottom: 0;
    height: 65px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    z-index: 9999;
}

.bloc-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.bloc-icon svg{
    color: #000;
    font-size: 22px
}

.driver-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Makes the image round */
    object-fit: cover; /* Ensures the image fills the circle without distortion */
    overflow: hidden; /* Hides any overflow */
    border: 2px solid #ddd; /* Optional: Adds a light border */
}

.driver-photo-pro {
    width: 75%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #ddd;
}
/* @media screen and (min-width: 600px) {
    .mobile-nav {
        display: none;
    }
} */