.animal-matcher-container {
    margin: 2em 0;
    padding: 1.5em;
    background: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #eee;
}

.animal-matcher-container h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.4em;
    border-bottom: 2px solid #ff6b6b;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.animal-matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.animal-match-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.animal-match-card:hover {
    transform: translateY(-5px);
}

.animal-match-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.match-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.match-info {
    padding: 10px;
    text-align: center;
}

.match-title {
    display: block;
    font-weight: bold;
    font-size: 0.95em;
    color: #333;
    margin-bottom: 4px;
}

.match-locality {
    display: block;
    font-size: 0.8em;
    color: #777;
}

.no-thumb-placeholder {
    width: 100%;
    height: 120px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

.no-matches-msg {
    font-style: italic;
    color: #666;
    background: #fff;
    padding: 15px;
    border-left: 4px solid #ff6b6b;
    border-radius: 4px;
}