.species-panel {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
/* 顶部搜索栏固定，不参与滚动 */
.panel-header {
    flex-shrink: 0;
    padding-bottom: 16px;
}
/* 下方列表区域单独滚动 */
.panel-scroll-wrap {
    flex: 1;
    overflow-y: auto;
    width: 100%;
}
.species-panel h3 {
    margin: 0 0 16px;
    font-size: 22px;
}
/* 列表居中 */
.species-grid {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
}
/* 旧卡片样式保留兼容 */
.species-item {
    background: rgba(60, 60, 70, 0.4);
    border-radius: 8px;
    padding: 10px 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.species-item:hover {
    background: rgba(80, 80, 90, 0.5);
    border-color: rgba(255,255,255,0.15);
}
.species-preview {
    width: 70px;
    height: 70px;
    background: rgba(20,20,25,0.5);
    border-radius: 6px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.species-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.species-name {
    font-size: 13px;
    color: #e0e0e0;
    margin-bottom: 4px;
}
.species-desc {
    font-size: 11px;
    color: #aaa;
}