.group-list-container {
    padding: 20px;
}

.group-table-container {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.group-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.group-stats i {
    color: var(--primary-color);
    font-size: 20px;
}

.group-stats span {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 4px;
}

/* 表格样式 */
#groupTable {
    width: 100%;
    border-collapse: collapse;
}

#groupTable th {
    background-color: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #666;
    border-bottom: 2px solid #eee;
}

#groupTable td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

#groupTable tr:hover {
    background-color: #f8f9fa;
}

/* 操作按钮样式 */
.action-buttons {
    display: flex;
    gap: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.action-buttons:hover {
    opacity: 1;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-icon i {
    font-size: 16px;
}

.btn-icon:hover {
    transform: translateY(-2px);
}

.action-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.left-actions, .right-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.batch-delete-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.batch-delete-btn .selected-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
} 