```css
/* ===== Fenêtre école ===== */

#featureModal .modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* En-tête */
#featureModal .modal-header {
    background: #119c9d;
    color: white;
    border-bottom: none;
    padding: 18px 20px;
}

#featureModal .modal-title {
    color: white !important;
    font-weight: 600;
    font-size: 20px;
}

#featureModal .modal-header .close {
    color: white;
    opacity: 0.9;
    text-shadow: none;
    font-size: 28px;
}

/* Corps */
#featureModal .modal-body {
    padding: 20px;
    background: #ffffff;
}

/* Vignette */
.ecole-vignette {
    text-align: left;
    margin-bottom: 18px;
}

.ecole-vignette img {
    width: 65px;
    height: 65px;
    padding: 8px;
    border-radius: 50%;
    border: 3px solid #119c9d;
    background: white;
}

/* Tableau */
.ecole-info {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 18px;
    border: 1px solid #e1e7e7;
    border-radius: 7px;
    overflow: hidden;
}

.ecole-info th {
    width: 35%;
    background: #084f50;
    color: white;
    font-weight: 500;
    padding: 11px 12px;
    vertical-align: middle;
}

.ecole-info td {
    padding: 11px 12px;
    color: #333;
    background: #f8fafb;
    vertical-align: middle;
}

/* Alternance légère */
.ecole-info tr:nth-child(even) td {
    background: #eef7f7;
}

/* Lien */
.ecole-link {
    display: block;
    text-align: center;
    margin-top: 10px;
}

.ecole-link a {
    display: inline-block;
    padding: 9px 18px;
    background: #119c9d;
    color: white !important;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s;
}

.ecole-link a:hover {
    background: #084f50;
    text-decoration: none;
}

/* Pied de fenêtre */
#featureModal .modal-footer {
    background: #f4f7f7;
    border-top: 1px solid #e1e7e7;
}

#featureModal .modal-footer .btn {
    border-radius: 5px;
}

/* ===== Etiquettes dataEcole ===== */

.ecole-marker {
    background: transparent;
    border: none;
}

/* Conteneur icône + nom */
.ecole-marker-container {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Icône école */
.ecole-marker-icon {
    width: 50px;
    height: 50px;
    display: block;
}

/* Nom de l'école */
.ecole-label {
    display: inline-block;
    margin-left: 8px;
    padding: 5px 9px;

    background-color: #084f50;
    color: #ffffff;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 600;
    line-height: 16px;

    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.30);
}

/* ===== Légende Liste des écoles ===== */

/* Nom de l'école */
.ecole-nom {
    display: block;
    font-weight: 700;
    color: #2065ac;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 3px;
}

/* Adresse */
.ecole-adresse {
    display: block;
	font-weight: 700;
    color: #084f50;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 3px;
}

/* Périmètre */
.ecole-perimetre {
    display: block;
    color: #084f50 !important;
    font-size: 11px !important;
    font-weight: 600;
    line-height: 15px;
}
```
