.station-progress-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.station-progress-empty {
    color: #6b7280;
    font-style: italic;
    padding: 16px;
}

.station-card {
    margin-bottom: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.station-header {
    background: #f9fafb;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    color: #374151;
}

.station-content {
    padding: 16px;
}

.progress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.progress-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f3f4f6;
    border-radius: 6px;
    min-width: 0;
    min-height: 60px;
}

.progress-item-name {
    font-weight: 500;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.progress-item-value {
    font-weight: 600;
    align-self: flex-end;
    font-size: 0.875rem;
    margin-top: auto;
}

.status-completed {
    color: #059669;
}

.status-pending {
    color: #6b7280;
}

.status-error {
    color: #dc2626;
}

.complex-section {
    display: grid;
    gap: 16px;
}

.section-title {
    margin: 0 0 12px 0;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
}

.product-card {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

.product-header {
    background: #f9fafb;
    padding: 10px 12px;
    border-bottom: 1px solid #d1d5db;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-name {
    font-weight: 600;
    color: #374151;
}

.product-status {
    font-weight: 600;
    font-size: 13px;
}

.components-grid {
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
}

.component-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background: #f3f4f6;
    border-radius: 4px;
}

.component-icon {
    font-size: 12px;
}

.component-name {
    font-size: 12px;
    color: #374151;
}

.component-status {
    font-size: 11px;
    font-weight: 600;
    margin-left: auto;
}

.generic-warning {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 4px;
    padding: 12px;
}

.warning-title {
    color: #92400e;
    font-weight: 600;
    margin-bottom: 8px;
}

.warning-content {
    background: #f9fafb;
    padding: 8px;
    border-radius: 4px;
    font-size: 12px;
    overflow-x: auto;
    margin: 0;
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    .station-progress-empty {
        color: #9ca3af;
    }
    
    .station-card {
        border-color: #374151;
        background: #1f2937;
    }
    
    .station-header {
        background: #374151;
        border-bottom-color: #4b5563;
        color: #f9fafb;
    }
    
    .station-content {
        background: #1f2937;
    }
    
    .progress-item {
        background: #374151;
    }
    
    .progress-item-name {
        color: #f9fafb;
    }
    
    .status-completed {
        color: #10b981;
    }
    
    .status-pending {
        color: #9ca3af;
    }
    
    .status-error {
        color: #ef4444;
    }
    
    .section-title {
        color: #f9fafb;
    }
    
    .product-card {
        border-color: #4b5563;
        background: #1f2937;
    }
    
    .product-header {
        background: #374151;
        border-bottom-color: #4b5563;
    }
    
    .product-name {
        color: #f9fafb;
    }
    
    .component-item {
        background: #374151;
    }
    
    .component-name {
        color: #f9fafb;
    }
    
    .generic-warning {
        background: #451a03;
        border-color: #d97706;
    }
    
    .warning-title {
        color: #fbbf24;
    }
    
    .warning-content {
        background: #374151;
        color: #f9fafb;
    }
}