#epm-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 0; /* Pas de marge externe */
    border-radius: 0; /* On enlève les bords ronds pour le plein écran */
}

#epm-map {
    height: calc(100vh - 60px); /* Toute la hauteur moins la taille du menu */
    width: 100%;
    z-index: 1;
}

.epm-notice {
    background: #fff3cd;
    color: #856404;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.epm-form { min-width: 250px; }
.epm-form h3 { margin-top: 0; border-bottom: 2px solid #007cba; padding-bottom: 5px; }
.epm-form input[type="text"], .epm-form textarea {
    width: 100%; padding: 8px; margin-bottom: 10px; border: 1px solid #ddd;
}
.epm-form textarea { height: 80px; resize: vertical; }
.epm-form button {
    background-color: #007cba; color: white; border: none; padding: 8px 15px;
    width: 100%; cursor: pointer;
}
.epm-form button:hover { background-color: #005a87; }
