/* Style de base */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.container {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    height: 100vh;
}

@media (min-width: 992px) {
    .content-wrapper {
        grid-template-columns: 45% 55%;
    }
}

.pois-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow-y: auto;
    max-height: calc(100vh - 4rem);
}

.map-container {
    position: relative;
    height: 600px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#map {
    height: 100%;
    width: 100%;
    border-radius: 15px;
}

.poi-item {
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #fff;
    transition: all 0.3s ease;
}

.popup-content {
    padding: 10px;
}

.popup-content h5 {
    margin: 0 0 8px 0;
}

.popup-content p {
    margin: 0 0 5px 0;
}

/* Style pour le select multiple */
select[multiple] {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.5rem;
}

select[multiple] option {
    padding: 0.5rem;
    margin: 0.25rem 0;
    border-radius: 0.25rem;
    cursor: pointer;
}

select[multiple] option:checked {
    background-color: #0d6efd;
    color: white;
}

select[multiple] option:hover {
    background-color: #e9ecef;
}