.pet-db-head,
.pet-db-foot {
    margin: 15px 0;
    font-size: .95rem
}

.pet-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.pet-item {
    display: flex;
    gap: 20px;
    padding: 18px;
    margin-bottom: 25px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff
}

.pet-thumb {
    flex: 0 0 120px;
    height: 120px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat
}

.pet-body {
    flex: 1 1 auto;
    min-width: 0
}

.pet-name {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700
}

.badge.rare {
    margin-left: 6px;
    background: #e0265d;
    color: #fff;
    font-size: .75rem;
    padding: 2px 6px;
    border-radius: 3px
}

.pet-sub,
.pet-attr,
.pet-resist,
.pet-skill,
.pet-extra {
    margin: 4px 0;
    font-size: .9rem;
    color: #555
}

.pet-stats {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    margin: 6px 0
}

.pet-stats th,
.pet-stats td {
    border: 1px solid #ddd;
    padding: 4px 6px;
    text-align: center
}

.empty {
    text-align: center;
    padding: 60px 0;
    color: #777
}

@media(max-width:640px) {
    .pet-item {
        flex-direction: column;
        align-items: center
    }

    .pet-thumb {
        width: 100px;
        height: 100px
    }
}