body {
    background-color: #111;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phones-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.phone1, .phone2 {
    position: relative;
    width: 360px;
    height: 760px;
    border: 2px solid #333;
    border-radius: 40px;
    background-color: #000;
    box-shadow: 0 0 25px rgba(0,0,0,0.7);
    transition: transform 0.3s;
}

.phone1:hover, .phone2:hover {
    transform: scale(1.03);
}

.screen {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background-color: #fff;
    border-radius: 35px;
    overflow: hidden;
}

.front-camera {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: #333;
    border-radius: 50%;
    z-index: 10;
}

.screen-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    font-size: 1.5rem;
    color: white;
    position: relative;
}

.side-buttons {
    position: absolute;
    height: 50px;
    width: 3px;
    background-color: #444;
    right: -7px;
    top: 180px;
    border-radius: 2px;
}

.side-buttons.volume {
    height: 70px;
    top: 250px;
}

.status-bar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #333333;
    z-index: 20;
    font-family: sans-serif;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon {
    width: 16px;
    height: 10px;
    border: 2px solid #333333;
    border-radius: 2px;
    position: relative;
}

.icon::after {
    content: '';
    position: absolute;
    right: 0;
    top: 2px;
    width: 50%;
    height: 60%;
    background: #333333;
}

.signal {
    display: inline-block;
    width: 15px;
    height: 10px;
    position: relative;
    margin-right: 4px;
}

.signal::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3px;
    height: 3px;
    background: #333333;
}

.signal::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #333333;
    border-radius: 50%;
}
.greeting {
    position: absolute;
    top: 60px;
    left: 22px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    display: flex;
    align-items: center;
}

.greeting svg {
    width: 30px;
    height: 30px;
}
.CO2-container {
    position: absolute;
    top: 145px;
    left: 22px;
    margin-top: 40px;
}
.CO2-container-2 {
    position: absolute;
    top: 40px;
    left: 22px;
    margin-top: 40px;
}
.CO2-text {
    font-size: 14px;
    color: #000; 
    margin-bottom: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
        margin-bottom: 6px;
}
.mode-container {
    position: absolute;
    top: 58px;
    left: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    font-family: 'Quicksand', sans-serif;
}

.mode-text {
    font-size: 14px;
    color: #828282; 
    margin-bottom: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
        margin-left: -112px;
        margin-bottom: 0px;
}

.mode-switch {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    width: 290px;
    height: 38px;
    cursor: pointer;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.3);
}

.mode-option, .mode-option1 {
    flex: 1;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600; 
    color: #828282; 
    border-radius: 12px;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

.mode-option svg, .mode-option1 svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.mode-option.voyageur svg, .mode-option1.voyageur svg {
    stroke: #828282;
    fill: none;
}

.mode-option.conducteur svg, .mode-option1.conducteur svg {
    stroke: #828282;
    fill: none;
}

.mode-option.voyageur.active, .mode-option1.voyageur.active {
    background: #8AAD5B;
    color: white;
}

.mode-option.conducteur.active, .mode-option1.conducteur.active {
    background: #4E94BF;
    color: white;
}

.mode-option.active svg, .mode-option1.active svg {
    stroke: white;
    fill: none;
}
.btn-1 {
    display: flex;
    flex-direction: column;
    gap: 12px; 
    position: absolute;
    top: 550px; 
    left: 22px;
}

.btn-trajets,
.btn-demande,
.btn-trajets1,
.btn-demande1, .page-3 .btn-3 .btn-par-pm {
    border-radius: 12px;
    width: 290px;
    height: 45px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
    border: none;
    cursor: pointer;
}


.btn-trajets {
    background-color: #E5EFD7;
    color: #8AAD5B;
}

.btn-demande, .btn-valider-demande, .page-3 .btn-3 .btn-par-pm, .page-3 .btn-3 .btn-par-cb {
    background-color: #8AAD5B;
    color: #FFFFFF;
}
.btn-trajets1 {
    background-color: #D8E7F0;
    color: #4E94BF;
}


.btn-demande1, .btn-valider-suggestion {
    background-color: #4E94BF;
    color: #FFFFFF;
}
.nav-bar {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid #F5F5F5;
    width: 100%;
    height: 80px;
    box-shadow:  0 -10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 24px 24px 0 0;
    background-color: #ffffff;
    top: 665px;
    left: 0;
    position: absolute;
}

.nav-item {
    font-size: 12px;
    color: #BDBDBD;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    display: inline-block;
}

.nav-item .notif-dot {
    position: absolute;
    top: 0;
    right: 9px;
    width: 8px;
    height: 8px;
    background-color: red;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #fff; 
}
    
.nav-item.active {
    color: #8AAD5B;
}
.nav-item.trajets-passager, .nav-item.accueil{
    cursor: pointer;
}
.nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}
.illustration-container {
    position: absolute;
    top: 460px; 
    left: 0;
    width: 100%;
    height: auto;
}

.car {
    position: absolute;
    left: -153px;
    bottom: 0;
    width: 215px; 
}

.person {
    position: absolute;
    right: -7px;
    bottom: 0;
    width: 176px; 
}
.illustration-container1 {
    position: absolute;
    top: 235px; 
    left: 0;
    width: 100%;
    height: auto;
}
.conducteur-illu {
    position: absolute;
    width: 100%; 
}

.screen-content.passager-content.page-2 {
position: relative;
width: 100%;
height: 100%;
}


.page-2 .title {
position: absolute;
top: 60px;
left: 0;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Quicksand', sans-serif;
font-size: 16px;
font-weight: 700;
color: #384A1F;
z-index: 10;
padding-left: 4px;
box-sizing: border-box;
}

.page-4 .title {
position: absolute;
top: 60px;
left: 0;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Quicksand', sans-serif;
font-size: 16px;
font-weight: 700;
color: #1D3A4B;
z-index: 10;
padding-left: 4px;
box-sizing: border-box;
}
.page-2 .title-conducteur, .title-conducteur-2, .title-conducteur-3 {
position: absolute;
top: 45px;
left: 0;
width: 100%;
display: flex;
justify-content: center; 
align-items: center;
font-family: 'Quicksand', sans-serif;
font-size: 16px;
font-weight: 700;
color: #384A1F;
z-index: 10;
padding-left: 4px;
box-sizing: border-box;
}

.page-2 .title svg, .page-2 .title-conducteur .svg-left, .page-2 .title-conducteur-2 .svg-left , .page-3 .title-conducteur-3 .svg-left, .page-4 svg {
position: absolute;
cursor: pointer;
left: 4px; 
}
.page-4 svg {
color: #1D3A4B;
}
.page-2 .title-conducteur .svg-right {
position: absolute;
cursor: pointer;
right: 20px; 
}
.title-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Quicksand', sans-serif; 
}

.total {
    font-size: 16px; 
    font-weight: 700;
    color: #ff8d28;
    margin: 0;
    line-height: 1;
}

.page-2 .description {
    font-weight: 700;
    font-size: 16px;
    color: #1D3A4B; 
    margin: 4px 0 0 0;
    line-height: 1;
}
.page-3 .description {
    font-weight: 700;
    font-size: 15px;
    color: #1D3A4B; 
    margin: 4px 0 0 0;
    line-height: 1;
}
.map-page-3{
    width: 335px;
    height: 260px;
    top: 85px;
    position: absolute;
}
.page-2 .illustration1-page-2 {
position: absolute;
top: 125px;
left: 86px;
width: 202px;
height: 140px;
  background: url('/images/undraw_travelers_re_y25a1.svg') no-repeat center;
background-size: contain;
z-index: 5;
}
.page-2 .illustration2-page-2 {
position: absolute;
top: 95px;
left: 103px;
width: 311px;
height: 311px;
background: url('/images/Ellipse23.svg') no-repeat center;
background-size: contain;
z-index: 4;
}
.page-4 .illu-conducteur1-page-4 {
position: absolute;
top: 90px;
left: 70px;
width: 202px;
height: 140px;
  background: url('/images/Illu3.svg') no-repeat center;
background-size: contain;
z-index: 5;
}
.page-4 .illu-conducteur2-page-4 {
position: absolute;
top: 95px;
left: 90px;
width: 311px;
height: 311px;
background: url('/images/Ellipse23.svg') no-repeat center;
background-size: contain;
z-index: 4;
}
.page-5 .illustration1-page-5 {
position: absolute;
top: 166px;
    left: 120px;
    width: 95px;
    height: 65px;
  background: url('/images/Group.svg') no-repeat center;
background-size: contain;
z-index: 5;
}
.page-5 .illustration2-page-5 {
position: absolute;
    width: 336px;
    height: 510px;
background: url('/images/Ellipse23-cond.svg') no-repeat center;
background-size: contain;
z-index: 4;
}


.page-2 .nb-people,
.page-4 .nb-people,
.page-2 .arrive,
.page-4 .depart-arrive,
.page-2 .travel-with-women-toggle,
.page-2 .price {
position: absolute;
left: 22px;

padding: 12px 0;

font-family: 'Quicksand', sans-serif;
z-index: 10;
}
.page-4 .travel-with-women-toggle {
position: absolute;
left: 22px;

padding: 12px 0;

font-family: 'Quicksand', sans-serif;
z-index: 10;
}

.page-2 .nb-people { 
    top: 265px;
 
}
.page-4 .nb-people { 
    top: 220px;
 
}
.page-2 .arrive{ top: 365px;left: 0;  z-index: 100;}
.page-4 .depart-arrive { top: 322px;left: 0;  z-index: 100;}
.page-2 .travel-with-women-toggle { top: 500px; }
.page-2 .price { 
    top: 540px; 
    color : #384A1F;
    font-size: 26px;
    font-weight: 700;
    left: 125px;
}

.page-2 .btn-1 {
position: absolute;
bottom: 120px;
left: 22px;

z-index: 10;
}


.page-2 .bottom-text, .page-4 .bottom-text {
position: absolute;
bottom: 20px;

font-family: 'Quicksand', sans-serif;
font-size: 12px;
font-weight: 400;
color: #828282;
text-align: center;
z-index: 10;
}
.nb-people {
margin: 20px 0;
font-family: 'Quicksand', sans-serif;
font-size: 14px;
font-weight: 500;
color: gray;
 width: 100%; 
}
.selector-label {
font-size: 15px;
color: #333333;
margin-bottom: 12px;
font-weight: 700;
text-align: center; 
width: 100%;margin-left: -25px;
}

.number-options {
display: flex;
gap: 10px;
justify-content: flex-start; 
    padding-left: 0px;
    width: 300px;
}
.page-2 .number-option {
width: 34.28px;
height: 34.28px;
border-radius: 50%;
background: rgba(56, 74, 31, 0.2);
color: #384A1F; 
font-family: 'Quicksand', sans-serif;
font-size: 15px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-weight: 700;
transition: all 0.2s ease;
}
.page-4 .number-option2 {
width: 34.28px;
height: 34.28px;
border-radius: 50%;
background: rgba(78, 148, 191, 0.2);
color: #1D3A4B; 
font-family: 'Quicksand', sans-serif;
font-size: 15px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-weight: 700;
transition: all 0.2s ease;
}


.page-2 .number-option.selected {
background: #8AAD5B;
font-weight: 700;
opacity: 1;
color: white;
}

.page-4 .number-option2.selected {
    background: #4E94BF;
    font-weight: 700;
    opacity: 1;
    color: white;
}
.btn-2 {
    display: flex;

    position: absolute;
    top: 605px; 
    left: 55px;
}
.btn-valider-demande, .btn-valider-suggestion {
    border-radius: 12px;
    width: 220px;
    height: 45px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
    border: none;
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    padding-right: 15px;
    position: relative; 
    cursor: pointer;
}

.btn-valider-demande svg, .btn-valider-suggestion svg {
    width: 18px; 
    height: 18px;
    position: relative;
    top: 1px;
    flex-shrink: 0; 
}
.question{
        color: #333333;
        font-size: 15px;
        font-weight: 700;
        font-family: 'Quicksand', sans-serif;
        text-align: center;
}
.info{
    color: #828282;
    font-size: 12px;
    font-weight: 400;
    font-family: 'Quicksand', sans-serif;
    text-align: center;    
    margin-top: -10px;
}

.input-arrive, .input-depart{
    width: 300px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #c5c5c5;
    margin-left: 15px;
}

#autocomplete-results.autocomplete-list, #autocomplete-results-depart.autocomplete-list , #autocomplete-results-arrive.autocomplete-list {
    position: absolute;
    left: 17px; 
    width: 300px; 
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 200;
    border: 1px solid #E0E0E0;
    border-top: none;
    margin: 0;
    padding: 0;
}

#autocomplete-results.autocomplete-list li,#autocomplete-results-depart.autocomplete-list li ,#autocomplete-results-arrive.autocomplete-list li {
    padding: 12px 15px;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #F5F5F5;
    cursor: pointer;
    list-style: none;
    transition: background 0.2s ease;
}

#autocomplete-results.autocomplete-list li:last-child,#autocomplete-results-depart.autocomplete-list li:last-child ,#autocomplete-results-arrive.autocomplete-list li:last-child {
    border-bottom: none;
}

#autocomplete-results.autocomplete-list li:hover, #autocomplete-results-depart.autocomplete-list li:hover , #autocomplete-results-arrive.autocomplete-list li:hover {
    background-color: #F8F8F8;
}

.input-arrive.active, .input-depart.active {
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid transparent;
    position: relative;
    z-index: 31;
}

.hidden {
    display: none;
}

.toggle-label {
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;    
gap: 20px;
}

.toggle-text {
font-size: 12px;
color: #333333;
font-weight: 700;
}

.toggle-switch {
position: relative;
display: inline-block;
width: 40px;
height: 26px;
}

.toggle-input {
opacity: 0;
width: 0;
height: 0;
}

.toggle-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #cacaca;
border-radius: 34px;
transition: .4s;
}

.toggle-slider:before {
position: absolute;
content: "";
height: 18px;
width: 18px;
right: 19px;
bottom: 4px;
background-color: white;
border-radius: 50%;
transition: .4s;
}

.page-2 .toggle-input:checked + .toggle-slider {
background-color: #8AAD5B;
}
.page-4 .toggle-input:checked + .toggle-slider {
background-color: #4E94BF;
}

.toggle-input:checked + .toggle-slider:before {
transform: translateX(16px);
}

.page-3 .illustration1-page-3 {
    position: absolute;
    width: 339px;
    height: 322px;
    background: url('/images/Ellipse-paiement.svg') no-repeat center;
    background-size: contain;
    z-index: 4;
}
.page-3 .illustration2-page-3 {
    position: absolute;
    top: 70px;
    left: 120px;
    width: 136px;
    height: 140px;
    background: url('/images/mobile-card 1.svg') no-repeat center;
    background-size: contain;
    z-index: 5;
}

.page-3 .title-page-3 { 
    top: 220px;
    position: absolute;
    left: 74px;
    padding: 12px 0;
    font-family: 'Quicksand', sans-serif;
    z-index: 5;
}
.page-5 .title-page-5 { 
    top: 220px;
    position: absolute;
    left: 25px;
    padding: 12px 0;
    font-family: 'Quicksand', sans-serif;
    z-index: 5;
}
.page-3 .title-page-3 p.big {
    font-size: 26px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}
.page-3 .title-page-3 p.medium {
    font-size: 12px;
    font-weight: 500;
    color: #333333;
    margin: 0;
    text-transform: uppercase;
    margin: 4px 0px 0px 25px;
}
.page-3 .solde-page-3{ 
    top: 348px;
    position: absolute;
    left: 40px;
    width: 250px;
    padding: 12px 0;
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    text-align: center;
}
.page-3 .solde-page-3 .solde-actuel{
    font-weight: 700;
}
.btn-3{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 425px; 
    left: 23px;
    font-family: 'Quicksand', sans-serif;
}

.btn-3 .btn-par-cb{
    border-radius: 12px;
    width: 200px;
    height: 45px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}
.btn-3 p.medium {
    font-size: 12px;
    font-weight: 500;
    color: #333333;
    margin: 0;
    text-transform: uppercase;
    margin: 4px 0px 0px 0px;
}

.page-4-pm .illustration1-page-4-pm, .page-pancarte .illustration1-page-4-pm {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-top: -135px;
    background: url('/images/Ellipse-paiement-pm.svg') no-repeat center;
    background-size: contain;
    z-index: 4;
}
.page-4-pm .illustration2-page-4-pm {
    position: absolute;
    top: 200px;
    left: 110px;
    width: 100px;
    height: 100px;
    background: url('/images/Loader anim.svg') no-repeat center;
    background-size: contain;
    z-index: 5;
    animation: spin 1.5s linear infinite;
    transform-origin: center;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.page-4-pm .illustration3-page-4-pm {
    position: absolute;
    top: 235px;
    left: 144px;
    width: 35px;
    height: 30.23px;
    background: url('/images/Trace42.svg') no-repeat center;
    background-size: contain;
    z-index: 6;
}
.btn-4-pm ,.btn-5
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: absolute;
    bottom: 30px;
    left: 52px;
    font-family: 'Quicksand', sans-serif;
}
.btn-pancarte
{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 40px;
    left: 115px;
    font-family: 'Quicksand', sans-serif;
}
.popup-overlay , .popup-overlay-cond {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 5;
}
.annulation-popup, .annulation-popup-cond
{

    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;gap: 15px;
    padding: 15px 0;
    border-top: 1px solid #F5F5F5;
    width: 100%;
    height: 275px;
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 24px 24px 0 0;
    background-color: #ffffff;
    top: 430px;
    left: 0;
    position: relative;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    text-align: center;
}
.btn-confirm-cancel-1,
.btn-confirm-cancel-2{
    cursor: pointer;
    border-radius: 12px;
    color:#94C356;
    background-color: #fff;
    border: 2px solid #94C356;
    font-size: 17px;
    height: 45px;
}
.btn-confirm-cancel-1-cond,
.btn-confirm-cancel-2-cond{
    cursor: pointer;
    border-radius: 12px;
    color:#4E94BF;
    background-color: #fff;
    border: 2px solid #4E94BF;
    font-size: 17px;
    height: 45px;
}
.btn-confirm-cancel-1, .btn-confirm-cancel-1-cond{
    width: 180px;
}
.btn-confirm-cancel-2, .btn-c{
    width: 300px;
}
.btn-close-popup, .btn-back-to-4-pm{
    cursor: pointer;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    color: #8AAD5B;
    background-color: rgba(138, 173, 91, 0.3);
    border: none;
    height: 45px;
    width: 100px;
}
.btn-close-popup-cond{
    cursor: pointer;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    color: #4E94BF;
    background-color: rgba(78, 148, 191, 0.2);
    border: none;
    height: 45px;
    width: 100px;
}
.btn-4-pm .accueil, .btn-5 .accueil {
    color: #333333;
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    margin-top: -4px;
    cursor: pointer;
} 

.btn-4-pm .btn-show-pancarte{
    border-radius: 12px;
    width: 220px;
    height: 45px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
    background-color: #8AAD5B;
    z-index: 10;
}
.page-pancarte .pancarte{
    border: 2px solid black;
    border-radius: 15px;
    position: absolute;
    left: 30px;
    display: inline-block;
    top: 225px;
    z-index: 10;
    padding: 2px;
}
.pancarte-inner{
    position: relative;
    border: 4px solid #ea1f25;
    border-radius: 17px;
    background-color: #fff;
    width: 260px;
    height: 200px;
}
.pancarte-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Quicksand', sans-serif;
    font-size: 85px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    text-transform: uppercase;
}
.btn-4-pm .btn-cancel-demande{
    border-radius: 12px;
    width: 230px;
    height: 45px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    color: #8AAD5B;
    background-color: #E5EFD7;
}
.btn-5 .btn-cancel-suggestion{
    border-radius: 12px;
    width: 230px;
    height: 45px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    color: #fff;
    background-color: #4E94BF;
}

.page-4-pm .title-page-4-pm { 
    top: 310px;
    position: absolute;
    left: 42px;
    padding: 10px 0;
    font-family: 'Quicksand', sans-serif;
    z-index: 5;    
    text-align: center;
}
.page-5 .title-page-5 p.big {
    font-size: 24px;
    font-weight: 600;
    color: #4E94BF;
    margin: 0;
    width: 300px;
    text-align: center;
}
.page-4-pm .title-page-4-pm p.big {
    font-size: 24px;
    font-weight: 700;
    color: #8AAD5B;
    margin: 0;
    width: 248px;
}
.page-4-pm .title-page-4-pm p.medium {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-left: -12px;
    width: 278px;;
}
.page-5 .title-page-5 p.medium {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    width: 300px;
    text-align: center;
}
.alert {
position: absolute;
bottom: 0px;

width: 316px;
font-family: 'Quicksand', sans-serif;
font-size: 12px;
font-weight: 500;
color: white;
background-color: #bb200f;
text-align: center;
z-index: 11;
padding: 10px;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
animation: fadeIn 0.5s ease-out;
}

.alert.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.conducteur-content.page-2 .liste-demande-page-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        position: absolute;
        left: 20px;
        top: 121px;
    }

    .conducteur-content.page-2 .demande {
        background-color: #fff;
        width: 300px;
        height: 95px;
        border-radius: 12px;
        padding: 15px;
        box-sizing: border-box;
        position: relative;
        cursor: pointer;
    }

    .conducteur-content.page-2 .demande .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 15px;
    }

    .conducteur-content.page-2 .demande .header .user {
        background-color: #ff8d28;
        display: flex;
        align-items: center;
        height: 34px;
        border-radius: 50px;
        padding: 0 10px 0 0px;
        font-family: 'Quicksand', sans-serif;
        font-size: 14px;
        color: #fff;
        gap: 5px;
    }
    .conducteur-content.page-3 .demandes .user {
        background-color: #ff8d28;
        display: flex;
        align-items: center;
        height: 34px;
        border-radius: 50px;
        padding: 0 10px 0 0px;
        font-family: 'Quicksand', sans-serif;
        font-size: 14px;
        color: #fff;
        gap: 5px;
        left: 45px;
        top: -17px;;
        position: absolute;
    }

    .conducteur-content.page-2 .demande .header .user img {
        width: 34px;
        height: 34px;
    }

    .conducteur-content.page-2 .demande .header .user .distance-depart {
        font-weight: 700;
    }

    .conducteur-content.page-2 .demande .header .published {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        color: #333333;
        font-family: 'Quicksand', sans-serif;
        font-weight: 700;
    }

    .conducteur-content.page-2 .demande .content {
        font-size: 16px;
        color: #333333;
        font-weight: 600;
        display: flex;
        font-family: 'Quicksand', sans-serif;
        align-items: center;
    }
    .ios-payment {
    background: #eae9ee;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    top: 55px;
    position: relative;
    }

    .payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    background: white;
    border-bottom: 1px solid #dcdcdc;
    }

    .payment-header button {
    color: #007aff;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    }

    .payment-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: black;
    }

    .card-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0 20px;
    }
    .card-border {
    padding: 4px;
    border: 2px solid #007aff; 
    border-radius: 14px; 
    display: inline-block;
    }
    .card-inner {
    width: 150px;
    height: 90px;
    border: 1px solid #007aff;
    border-radius: 12px;
    background: #f0f0f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    }

    .card-inner .chip {
    width: 24px;
    height: 24px;
    background: #99c9ff;
    border-radius: 4px;
    position: absolute;
    top: 12px;
    left: 12px;
    }

    .card-inner .dots {
    font-size: 12px;
    font-weight: bold;
    color: #007aff;
    letter-spacing: 3px;
    margin-top: 45px;
    }


    .payment-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 16px;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    height: 15px;
        margin-top: 50px;
    cursor: pointer;

    }

    .payment-card.selected {

    }

    .card-left {
    display: flex;
    align-items: center;
    gap: 10px;
    }

    .mini-card-icon {
    width: 28px;
    height: 18px;
    background: #007aff;
    border-radius: 4px;
    position: relative;
    }

    .mini-card-icon::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 2px;
    }

    .payment-card p {
    margin: 0;
    color: #007aff;
    font-size: 15px;
    }

    .payment-card .brand {
    font-weight: 500;
    }

    .checkmark {
    color: #007aff;
    font-size: 18px;
    font-weight: 600;
    }

    .add-new-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: white;
    border-top: 1px solid #dcdcdc;
    color: #007aff;
    font-size: 15px;
    cursor: pointer;
        height: 15px;
    margin-top: 15px;
    }
    
    .illu-cercle {
        position: absolute;
        top: 40px;
        left: 15px;
        width: 330px;
        height: 400px;
        background-size: contain;
        z-index: 6;
    }
    .illu-image {
        position: absolute;
        top: 195px;
        left: 17px;
        width: 300px;
        height: 230px;
        background-size: contain;
        z-index: 6;
    }
    .illu-text {
        font-family: 'Quicksand', sans-serif;
        position: absolute;
        top: 440px;
        width: 230px;
        left: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #333333;
        justify-content: center;
        text-align: center;
    }
    .illu-text .bold{
        font-weight: 700;
        font-size: 18px;
    }
    .illu-text .simple{
        font-weight: 500;
        font-size: 14px;    
        margin-top: -10px;
    }
    .rayon-btn{
        position: absolute;
        top: 585px;
        left: 68px;
        width: 200px;
        height: 35px;
        border-radius: 12px;
        background-color: #4E94BF;
        color: #FFFFFF;
        font-family: 'Quicksand', sans-serif;
        font-weight: 600;
        font-size: 16px;
        text-align: center;
        padding-top: 10px;
    }
    .voyage-recap {
        font-family: 'Quicksand', sans-serif;
        position: absolute;
        top: 40px;
        left: 45px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }


    .recap-title {
        color: #4E94BF;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .passenger-info {
        display: flex;
        align-items: center;
        position: relative;
        width: 100%;
    }

    .profile-photo-3 {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        border: 2px solid #8AAD5B;
        position: absolute;
        left: 0;
        top: 0;
    }

    .passenger-details {
        margin-left: 65px;
        margin-top: 0px;
    }

    .passenger-name {
        color: #333333;
        font-size: 16px;
        font-weight: 700;
        display: block;
    }


    .route-info {
        color: #333;
        font-size: 16px;
        font-weight: 500;
        width: 100%;
        padding-left: 20px; 
    }


    .trip-details {
        display: flex;
        gap: 40px;
        width: 100%;
        padding-left: 20px; 
    }

    .trip-details span {
        color: #828282;
        font-size: 16px;
        font-weight: 600;
    }

    .trip-details .count-value,
    .trip-details .price-value {
        color: #333;
        font-weight: 700;
    }

    .route-departure::before {
        content: "-";
    }
    .route-departure::before,
    .route-arrival::before {
        display: inline-block;
        width: 1.2em; 
        text-align: center;
        font-family: 'Quicksand', sans-serif;
    }
    .route-arrival::before {
        content: "->";
    }
    .passenger-rating {
        display: inline-flex;
        gap: 2px;
        margin-top: 4px;
    }

    .star {
        font-size: 18px;
        line-height: 1;
    }

    .gold {
        color: #FFD700; 
    }

    .gray {
        color: #CCCCCC; 
    }

    .btn-conducteur-page-3{
        position: relative;
        top: 275px;
        left: 18px;
    }
    .appeler, .chercher{
        cursor: pointer;
        font-family: 'Quicksand', sans-serif;
        font-size: 16px;
        font-weight: 600;
        width: 300px;
        height: 45px;
        border-radius: 12px;
        border:none;
    }
    .appeler{
        color: #4E94BF;
        background-color: #D8E7F0;

    }
    .chercher{
        color: #fff;
        background-color: #4E94BF;
        margin-top: 15px;
    }
    .liste-trajets{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        position: absolute;
        left: 18px;
        top: 155px;
        background: #fff;
    }
    .trajet {
        background-color: #f2f2f2;
        width: 300px;
        border-radius: 12px;
        padding: 12px;
        box-sizing: border-box;
        font-family: 'Quicksand', sans-serif;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        cursor: pointer;
    }

    .top-row {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: #333;
        font-weight: 500;
        font-family: 'Quicksand', sans-serif;
        margin-bottom: 5px;
    }

    .badge {
        padding: 2px 8px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
    }

    .badge-green {
        background-color: #8AAD5B;
        color: #fff;
    }

    .route-trajet {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
        font-family: 'Quicksand', sans-serif;
        color: #333;
    }

    .bottom-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .user-info-trajet {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .profile-photo-trajet {
        width: 34px;
        height: 34px;
        border-radius: 50%;
    }

    .user-details-trajet {
        display: flex;
        flex-direction: column;
        font-size: 12px;
            width: 80px;
    }

    .gold-badge {
        color: #ffb400;
        font-size: 12px;
        font-weight: 600;
        font-family: 'Quicksand', sans-serif;

    }

    .user-name-trajet {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        font-family: 'Quicksand', sans-serif;

    }

    .price-info-trajet {
        text-align: right;
    }

    .price-trajet {
        color: #4d7c0f;
        font-size: 18px;
        font-weight: 700;
        font-family: 'Quicksand', sans-serif;

    }

    .co2-trajet {
        font-size: 10px;
        color: #777;
        font-weight: 500;
        font-family: 'Quicksand', sans-serif;

    }