
        /* 基本樣式設定 */
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #34495e;
            --success-color: #27ae60;
            --warning-color: #f39c12;
            --border-radius: 6px;
        }
        
        body {
            font-family: 'Segoe UI', '微軟正黑體', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f7fa;
            margin: 0;
            padding: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* 標題樣式 */
        h1 {
            color: var(--primary-color);
            text-align: center;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            margin-bottom: 30px;
        }
        
        h2 {
            color: var(--dark-color);
            padding-bottom: 8px;
            border-bottom: 1px solid #ddd;
            margin-top: 30px;
        }
        
        /* 資訊卡片樣式 */
        .info-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-bottom: 30px;
        }
        
        /* 表格樣式 */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }
        
        thead {
            background-color: var(--primary-color);
            color: white;
        }
        
        th {
            padding: 15px;
            text-align: left;
            font-weight: bold;
        }
        
        td {
            padding: 12px 15px;
            border-bottom: 1px solid #ddd;
        }
        
        tbody tr:nth-child(even) {
            background-color: rgba(236, 240, 241, 0.5);
        }
        
        tbody tr:hover {
            background-color: rgba(52, 152, 219, 0.1);
            cursor: pointer;
        }
        
        /* 狀態樣式 */
        .status {
            padding: 6px 10px;
            border-radius: 30px;
            font-size: 0.85em;
            font-weight: 500;
            text-align: center;
            display: inline-block;
            min-width: 80px;
        }
        
        .status-active {
            background-color: rgba(39, 174, 96, 0.2);
            color: var(--success-color);
        }
        
        .status-repair {
            background-color: rgba(243, 156, 18, 0.2);
            color: var(--warning-color);
        }
        
        /* 摘要和備註樣式 */
        .summary {
            display: flex;
            justify-content: space-around;
            margin: 20px 0;
        }
        
        .summary-item {
            text-align: center;
            padding: 15px;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            flex: 1;
            margin: 0 10px;
        }
        
        .summary-label {
            font-size: 0.9em;
            color: #7f8c8d;
            margin-bottom: 5px;
        }
        
        .summary-value {
            font-size: 1.4em;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .note {
            background-color: rgba(231, 76, 60, 0.1);
            border-left: 4px solid var(--accent-color);
            padding: 15px;
            margin-top: 30px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        
        /* 響應式設計 */
        @media (max-width: 768px) {
            table {
                display: block;
                overflow-x: auto;
            }
            
            .summary {
                flex-direction: column;
            }
            
            .summary-item {
                margin: 5px 0;
            }
        }
