/* 服务器状态卡片样式 */

/* 服务器列表 */
.server-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.server-item {
    display: flex;
    align-items: center;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

/* 服务器项目卡片的触碰反馈效果 - 最简实现 */
.server-item:hover {
    background-color: #e9ecef !important;
}

.server-item:active {
    background-color: #dee2e6 !important;
    transform: scale(0.99);
}

.server-item.selected {
    background: #e3f2fd;
    border: 1px solid #5b9bd5;
}

.server-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #5b9bd5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    flex-shrink: 0;
}

.server-info {
    flex: 1;
}

.server-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e50;
}

.server-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 2px;
}

.server-players {
    font-weight: 600;
    color: #5b9bd5;
}
