/* 前台GPU仪表板样式 */
.gpu-dashboard-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gpu-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.gpu-table th,
.gpu-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.gpu-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    cursor: pointer;
}

.gpu-table tr:hover {
    background-color: #f9f9f9;
}

.high-usage {
    background-color: #d4edda;
    font-weight: bold;
}

.medium-usage {
    background-color: #fff3cd;
}

.low-usage {
    background-color: #f8d7da;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.gpu-stats-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.gpu-stats-header h2 {
    margin: 0 0 5px 0;
    color: #333;
}

.last-update {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}