* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    color: #2c3e50;
}

.jour {
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 6px;
    border-left: 6px solid #3599DB;
}

.description {
    margin-top: 5px;
    margin-left: 20px;
	font-weight: bold;
    color: #666;
    line-height: 1.6;
    padding-left: 10px;
}

h2 {
    text-align: center;
    font-size: 1.8em;
    color: #34495e;
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
}

ul li {
    margin: 10px 0;
    line-height: 1.8;
}

a {
    color: #3599DB;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong {
	color: #666;
    font-weight: bold;
}

/* Styles du bouton */
.toggle-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #fff;
    color: #3599DB;
    border: 1px solid #3599DB;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.toggle-btn:hover {
    background-color: #f0f8ff;
    color: #2980b9;
}

/* Styles pour la section de navigation */

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 6px;
    border-left: 6px solid #DB7A35;
}

.btn-nav {
    padding: 8px 16px;
    background-color: #fff;
    color: #DB7A35;
    border: 1px solid #DB7A35;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.btn-nav:hover {
    background-color: #fff9f2;
    color: #DB5D35;
}

.btn-retour {
    padding: 8px 16px;
    background-color: #fff;
    color: #DB7A35;
    border: 1px solid #DB7A35;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-retour:hover {
    background-color: #fff9f2;
    color: #DB5D35;
}

.a-retour {
    color: #DB7A35;
    text-decoration: none;
}

.copy-btn {
    margin-left: 10px;
    padding: 5px 10px;
    background-color: #fff;
    color: #3599DB;
    border: 1px solid #3599DB;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.copy-btn:hover {
    background-color: #f0f8ff;
    color: #2980b9;
}


/* Styles généraux pour le conteneur de la carte */
.map-container {
    position: relative;
    padding-top: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.responsive-iframe {
    width: 100%;
    height: auto;
    max-width: 100%;
}


@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    .container {
        padding: 15px;
    }
}

/* Styles pour les infobulles */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.titre {
	color: #DB9735;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 130px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position de la tooltip au-dessus de l'élément */
    left: 0%;
    margin-left: 0px; /* Centrer la tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}