/* Wildlife Pins CSS */

/* Map container styles */
.wildlife-map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Wildlife pin marker styles */
.wildlife-pin-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FD7E14;
    border-radius: 50%;
    width: 30px !important;
    height: 30px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.wildlife-pin-marker:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.wildlife-pin-marker.active {
    background-color: #28a745;
    transform: scale(1.2);
    z-index: 1000;
}

.wildlife-pin-icon {
    color: white;
    font-size: 16px;
}

/* Wildlife info panel styles */
.wildlife-info-panel {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 300px;
    max-height: 400px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 15px;
    opacity: 0.95;
    transform: translateY(10px);
    transition: all 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
}

.wildlife-info-content {
    position: relative;
}

.wildlife-info-content h4 {
    color: #FD7E14;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.wildlife-info-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #444;
}

.wildlife-image {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.wildlife-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Wildlife heading styles */
.wildlife-heading {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.wildlife-heading i {
    font-size: 1.4rem;
    margin-right: 10px;
    color: #FD7E14;
}

.wildlife-heading h3 {
    margin: 0;
    color: #333;
}

.wildlife-intro {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 768px) {
    .wildlife-map-container {
        height: 400px;
    }
    
    .wildlife-info-panel {
        width: 260px;
        max-height: 350px;
    }
}

@media (max-width: 576px) {
    .wildlife-map-container {
        height: 350px;
    }
    
    .wildlife-info-panel {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        max-height: 200px;
    }
}