body {
    margin: 0;

    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    max-width: 1000px;
    height: 600px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

#sidebar {
    width: 40%;
    padding: 10px;
    overflow-y: auto;
    background: #f8f8f8;
    border-right: 1px solid #ccc;
}

#map {
    flex: 1;
    background-color: #e0e0e0;
    z-index: 1;
}

.location-item {
    padding: 1rem;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.location-item:hover {
    background-color: #eee;
}
.location-itineraire:hover {
    color: #005AE7;
}

.location-description,
.location-phone,
.location-itineraire,
.location-address,
.location-horaire{
    display: none;
    padding: 10px;
    margin-top: 5px;
}

.location-item.active .location-header {
    color: red;
}

.location-item.active {
    background-color: #f0f0f0;
}

.location-item.active .location-description,
.location-item.active .location-phone,
.location-item.active .location-itineraire,
.location-item.active .location-address,
.location-item.active .location-horaire {
    display: block;
}

.accueil  {
    height: 8px;
    width: 70%;
    background-color: #334155;
    border: none;
    margin-top: 1rem;
}

.bigger-form input,
.bigger-form textarea {
    font-size: 1.1rem;
    padding: 1rem;
}

.bigger-form button {
    font-size: 1.1rem;
    padding: 0.5rem 1.25rem;
}
.content  {
    padding-top: 10%!important;
    margin-left: 20%;
    margin-right: 20%;
}
h1 {
    font-size: 30px;
    font-weight: bold;
}
.icon {
    margin-right: 0.5rem;
}
.submit {
    background-color: #1E5082;
}
@media (max-width: 768px) {
    .container {
        display: none;
    }

    #locationListDesktop {
        display: block;
    }
}
@media (min-width: 769px) {

    #locationListMobile {
        display: none;
    }

}
.text-justify{
    text-align: justify;
}
