.map{
	overflow: hidden;
	
}

.map--svg{
	width: 17rem;
	float: left;
	margin-left:6.25rem;
}
.map--svg path{
	fill: #8fd9fb;
	stroke:#FFF;
	stroke-width: 0.063rem;
	transition: fill 0.3s; 
	
}
.map--svg path:hover{
	fill: #3538d2; 
	
}
.map--svg .is-active path{
	fill: #3538d2;
}
/* .map--list{
	float: left;
	margin-left: 40px;
	width: 1rem;
} */
.map-title {
    margin-left: 25rem;
	
	
}
.is-active{
	color: #0064e4;
	font-weight: bold;
}
ul{
	list-style-type: none;
}
a {
    color: #000;
    text-decoration: none;
	
}
h3{
	text-align: center;
	
}

.containermap {
    display: flex; /* Enables flexbox */
}

.columnmap {
    flex: 1; /* Makes each column take equal space */
    padding: 1.25rem; /* Adds padding for spacing */
}
.lite{
	margin: 0.063rem 0; /* Réduit la marge verticale */
    padding: 0; /* Réduit le padding interne */
	font-size: 0.813rem;
}
.leftmap {
    /* background-color: lightblue; */
	background-color: aliceblue;
}

.rightmap {
    /* background-color: lightcoral; */
}
/* General style for larger screens (desktops, tablets) */
.map--svg {
    width: 17rem;
    float: left;
    margin-left: 6.25rem;
}

/* Adjustments for mobile screens */
@media (max-width: 48rem) {
    .map--svg {
        width: 80%; /* Make the SVG map full width */
        margin-left: 0; /* Remove left margin on smaller screens */
    }

    .map-title {
        margin-left: 0; /* Center the title on smaller screens */
        text-align: center;
    }

    .containermap {
        flex-direction: column; /* Stack the columns vertically on mobile */
    }

    .columnmap {
        padding: 0.625rem; /* Reduce padding for better spacing on smaller screens */
    }

    .lite {
        font-size: 0.75rem; /* Further reduce the font size on smaller screens */
        margin: 0.031rem 0;
    }
}

/* Very small devices like phones (max-width 480px) */
@media (max-width: 30rem) {
    .map--svg {
        width: 80%; /* Slight margin to avoid edge overlap */
    }

    .map-title {
        font-size: 1rem; /* Reduce title font size for small screens */
    }

    h3 {
        font-size: 1rem; /* Reduce heading size for phones */
    }

    ul {
        padding-left: 0;
    }

    a {
        font-size: 0.75rem; /* Smaller link font for better fit */
    }
}