/* Modern Pest Icons CSS for DetectNuisible.fr */

.pest-icon-container {
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, #f9f9f9, #e9e9e9);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pest-icon-container:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.pest-icon {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}

.pest-icon:hover {
    transform: scale(1.1);
}

.pest-card {
    margin-bottom: 30px;
    height: 100%;
}

.pest-info {
    padding: 20px;
    text-align: center;
}

.pest-info h3 {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.pest-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}