/* Pets Page Styles */
.page-header {
    margin-top: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.pet-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.pet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.pet-card .pet-icon {
    transition: transform 0.3s ease;
}

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

.pet-card .badge {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
}

#category-filter {
    border-radius: 25px;
}

#search-input {
    border-radius: 25px;
}
