.oci-map-cards-container {
    max-width: 1140px;
    margin: 0 auto;
}
.oci-map-search-container {
    max-width: 1140px;
    margin: 0 auto 20px;
}
.oci-map-search {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;    
    gap: 20px;
}
.oci-map-search input,
.oci-map-search select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.oci-map-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.oci-map-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    width: calc(50% - 10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.oci-map-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Effet au survol */
}
.oci-map-card-image {
    overflow: hidden;
}
.oci-map-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.oci-map-card-content {
    padding: 15px;
}
.oci-map-card-categories {
    margin-bottom: 10px;
}
.oci-map-card-category {
    background-color: #2e3548;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    margin-right: 5px;
    display: inline-block;
}
.oci-map-card-description {
    margin-bottom: 10px;
}
.oci-map-card-link {
    color: #2e3548;
    text-decoration: none;
    font-weight: bold;
}
.oci-map-search-container {
    padding: 20px 0 0 0;
}
.oci-map-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.oci-map-pagination button {
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    margin: 0 5px;
}
.oci-map-pagination button:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}
#oci-map-page-numbers {
    font-size: 16px;
    margin: 0 10px;
}
.oci-map-card-image img {
    height: 150px !important;
    object-fit: cover;
    object-position: center;
}
.oci-map-card-details {
    word-break: break-all;
}
.oci-map-card-details i {
    margin-right: 5px;
}

/* Styles pour la pop-up Leaflet */
.leaflet-popup-content-wrapper {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}
.leaflet-popup-content h1,
.leaflet-popup-content h2,
.leaflet-popup-content h3,
.leaflet-popup-content h4,
.leaflet-popup-content h5,
.leaflet-popup-content h6 {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    margin: 0 0 10px;
}
.leaflet-popup-content p {
    margin: 0 0 10px;
}
.leaflet-popup-content a {
    color: #2e3548;
    text-decoration: none;
    font-weight: bold;
}
.leaflet-popup-content img {
    max-width: 100%;
    height: auto;
}

/* Breakpoints pour tablette et mobile */
@media (max-width: 1024px) {
    .oci-map-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .oci-map-card {
        width: 100%;
    }
}
