body {
    font-family: Arial, sans-serif;
    background: #f0f8ff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    flex-wrap: wrap;
    flex-direction: column;
}

.head{
    background: linear-gradient(135deg, #2b5876, #4e4376);
    color: white;
    padding: 20px;
    text-align: center;
    width: 100%;
}

ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
    max-width: 70%;
    margin: 10px;
    min-width: 150px;
    min-width: 40%;
}

.bouton {
    background: linear-gradient(to right, #2b5876, #4e4376);
    color: white;
    border: none;
}

button{
    width: 100%;
    max-width: 60vw;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    margin: 5px;
}


section{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding-bottom: 10px;
    margin: 20px;
}

.bus {
    display: inline-block;
    padding: 2px 8px;
    background: #E5006B;
    color: white;
    border-radius: 12px;
    font-size: 0.9em;
}

.option {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

.option:hover {
    border-color: #4ac1f7;
    transform: translateY(-2px);
}

.selected {
    border-color: #2b5876;
}

.correct {
    border-color: #52b788;
    background: rgba(82, 183, 136, 0.1);
}

.incorrect {
    border-color: #d00000;
    background: rgba(208, 0, 0, 0.1);
}

p{
    font-size: 1.2rem;
    margin: 12px;
    text-align:center
}

#Terminus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 80%;
}

.station {
    padding: 12px 20px;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    color: #2b5876;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1;
    max-width: 40%;
    position: relative;
}

.fleche {
    color: #E5006B;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* Version responsive */
@media (max-width: 500px) {
    #Terminus {
        flex-direction: column;
        gap: 10px;
    }
    .station {
        max-width: 90%;
        width: 80%;
    }
    .fleche {
        transform: rotate(90deg);
    }
}

#map {
    height: 40vh;
    width: 80vw;
    max-width: 90%;
}

footer p, strong a {
    font-size: 0.8em;
    text-align: center;
    margin-top: 20px;
    color: #666;
}

strong a{
    font-size: 1em;
}