/* /Components/ProgressBar.razor.rz.scp.css */
/* Progress Bar Component Styles */
.progress-bar-container[b-oawa3rwvhq] {
    margin: 1rem 0;
    max-width: 100%;
}

.progress-bar-wrapper[b-oawa3rwvhq] {
    width: 100%;
    animation: fadeIn-b-oawa3rwvhq 0.3s ease-in-out;
}

.progress-info[b-oawa3rwvhq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2c5aa0;
}

.progress-text[b-oawa3rwvhq] {
    color: #2c5aa0;
    font-weight: 600;
}

.progress-percentage[b-oawa3rwvhq] {
    color: #10b981;
    font-weight: 600;
    font-size: 0.875rem;
}

.progress-bar[b-oawa3rwvhq] {
    width: 100%;
    margin-bottom: 0.25rem;
}

.progress-bar-background[b-oawa3rwvhq] {
    width: 100%;
    height: 8px;
    background-color: rgba(229, 231, 235, 0.6);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.progress-bar-fill[b-oawa3rwvhq] {
    height: 100%;
    background: linear-gradient(90deg, #2c5aa0 0%, #10b981 100%);
    border-radius: 4px;
    transition: width 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.progress-bar-fill[b-oawa3rwvhq]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shine-b-oawa3rwvhq 2s infinite;
}

.progress-bar-shine[b-oawa3rwvhq] {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmer-b-oawa3rwvhq 2s infinite;
}

.progress-monotonic-info[b-oawa3rwvhq] {
    margin-top: 0.25rem;
    text-align: center;
}

.progress-monotonic-info .text-muted[b-oawa3rwvhq] {
    color: #6b7280;
    font-size: 0.75rem;
    font-style: italic;
}

.progress-bar-loading[b-oawa3rwvhq] {
    width: 100%;
    margin: 1rem 0;
}

.progress-skeleton[b-oawa3rwvhq] {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: pulse-b-oawa3rwvhq 1.5s infinite;
}

/* Animations */
@keyframes fadeIn-b-oawa3rwvhq {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine-b-oawa3rwvhq {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes shimmer-b-oawa3rwvhq {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulse-b-oawa3rwvhq {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .progress-bar-container[b-oawa3rwvhq] {
        margin: 0.75rem 0;
    }
    
    .progress-info[b-oawa3rwvhq] {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
    }
    
    .progress-percentage[b-oawa3rwvhq] {
        font-size: 0.8125rem;
    }
    
    .progress-bar-background[b-oawa3rwvhq] {
        height: 6px;
    }
    
    .progress-monotonic-info .text-muted[b-oawa3rwvhq] {
        font-size: 0.6875rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .progress-bar-container[b-oawa3rwvhq] {
        margin: 0.875rem 0;
    }
    
    .progress-bar-background[b-oawa3rwvhq] {
        height: 7px;
    }
}

@media (min-width: 1024px) {
    .progress-bar-container[b-oawa3rwvhq] {
        margin: 1rem 0;
    }
    
    .progress-bar-background[b-oawa3rwvhq] {
        height: 8px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .progress-bar-background[b-oawa3rwvhq] {
        background-color: #000;
        border: 1px solid #fff;
    }
    
    .progress-bar-fill[b-oawa3rwvhq] {
        background: #fff;
    }
    
    .progress-text[b-oawa3rwvhq],
    .progress-percentage[b-oawa3rwvhq] {
        color: #000;
        font-weight: 700;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .progress-bar-fill[b-oawa3rwvhq],
    .progress-bar-wrapper[b-oawa3rwvhq],
    .progress-skeleton[b-oawa3rwvhq] {
        transition: none;
        animation: none;
    }
    
    .progress-bar-shine[b-oawa3rwvhq] {
        animation: none;
    }
}

/* Focus styles for accessibility */
.progress-bar-fill:focus[b-oawa3rwvhq] {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .progress-bar-container[b-oawa3rwvhq] {
        break-inside: avoid;
    }
    
    .progress-bar-fill[b-oawa3rwvhq] {
        background: #000 !important;
        box-shadow: none !important;
    }
    
    .progress-bar-background[b-oawa3rwvhq] {
        border: 1px solid #000;
        box-shadow: none !important;
    }
}
/* /Components/TelemetryConsentBanner.razor.rz.scp.css */
/* GDPR Consent Banner Styles */

.consent-banner[b-asdzcslf97] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.consent-banner.visible[b-asdzcslf97] {
    opacity: 1;
    visibility: visible;
}

.consent-overlay[b-asdzcslf97] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.consent-content[b-asdzcslf97] {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    max-height: 90vh;
    width: 90%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideIn-b-asdzcslf97 0.3s ease-out;
}

@keyframes slideIn-b-asdzcslf97 {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Header */
.consent-header[b-asdzcslf97] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consent-title[b-asdzcslf97] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.consent-close[b-asdzcslf97] {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.consent-close:hover[b-asdzcslf97] {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Body */
.consent-body[b-asdzcslf97] {
    padding: 0;
    overflow-y: auto;
    flex: 1;
}

.consent-description[b-asdzcslf97] {
    padding: 20px;
}

.consent-description > p[b-asdzcslf97] {
    margin: 0 0 20px 0;
    color: #495057;
    line-height: 1.6;
}

.consent-details[b-asdzcslf97] {
    margin-bottom: 20px;
}

.consent-section[b-asdzcslf97] {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.consent-section h4[b-asdzcslf97] {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.consent-section ul[b-asdzcslf97] {
    margin: 0;
    padding-left: 20px;
}

.consent-section li[b-asdzcslf97] {
    margin-bottom: 5px;
    color: #495057;
    font-size: 0.9rem;
}

/* Consent Categories */
.consent-categories[b-asdzcslf97] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.consent-category[b-asdzcslf97] {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.consent-category:hover[b-asdzcslf97] {
    background-color: rgba(102, 126, 234, 0.1);
}

.consent-category input[type="checkbox"][b-asdzcslf97] {
    display: none;
}

.checkmark[b-asdzcslf97] {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.consent-category input[type="checkbox"]:checked + .checkmark[b-asdzcslf97] {
    background-color: #667eea;
    border-color: #667eea;
}

.consent-category input[type="checkbox"]:checked + .checkmark[b-asdzcslf97]::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.category-info[b-asdzcslf97] {
    flex: 1;
}

.category-info strong[b-asdzcslf97] {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 2px;
}

.category-info small[b-asdzcslf97] {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Notice */
.consent-notice[b-asdzcslf97] {
    background-color: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 6px;
    padding: 15px;
    margin-top: 20px;
}

.consent-notice p[b-asdzcslf97] {
    margin: 0;
    color: #1565c0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.consent-notice i[b-asdzcslf97] {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Footer */
.consent-footer[b-asdzcslf97] {
    padding: 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.consent-actions[b-asdzcslf97] {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.consent-actions .btn[b-asdzcslf97] {
    flex: 1;
    min-width: 120px;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.consent-actions .btn:disabled[b-asdzcslf97] {
    opacity: 0.6;
    cursor: not-allowed;
}

.consent-processing[b-asdzcslf97] {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.consent-processing i[b-asdzcslf97] {
    margin-right: 8px;
}

.consent-links[b-asdzcslf97] {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-link[b-asdzcslf97] {
    background: none;
    border: none;
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px 0;
    transition: color 0.2s ease;
}

.btn-link:hover[b-asdzcslf97] {
    color: #495057;
    text-decoration: underline;
}

/* Technical Details */
.consent-technical-details[b-asdzcslf97] {
    border-top: 1px solid #e9ecef;
    padding: 20px;
    background-color: #f8f9fa;
}

.consent-technical-details h4[b-asdzcslf97] {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.technical-info[b-asdzcslf97] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-item[b-asdzcslf97] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
}

.tech-item strong[b-asdzcslf97] {
    color: #495057;
    min-width: 100px;
    flex-shrink: 0;
}

.tech-item code[b-asdzcslf97] {
    background-color: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.8rem;
}

.consent-actions-detailed[b-asdzcslf97] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.consent-actions-detailed .btn[b-asdzcslf97] {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .consent-content[b-asdzcslf97] {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
    }
    
    .consent-header[b-asdzcslf97] {
        padding: 15px;
    }
    
    .consent-title[b-asdzcslf97] {
        font-size: 1.1rem;
    }
    
    .consent-description[b-asdzcslf97] {
        padding: 15px;
    }
    
    .consent-section[b-asdzcslf97] {
        padding: 12px;
    }
    
    .consent-footer[b-asdzcslf97] {
        padding: 15px;
    }
    
    .consent-actions[b-asdzcslf97] {
        flex-direction: column;
    }
    
    .consent-actions .btn[b-asdzcslf97] {
        flex: none;
        width: 100%;
    }
    
    .consent-links[b-asdzcslf97] {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .consent-content[b-asdzcslf97] {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        max-height: none;
    }
    
    .consent-header[b-asdzcslf97] {
        padding: 12px 15px;
    }
    
    .consent-title[b-asdzcslf97] {
        font-size: 1rem;
    }
    
    .consent-description[b-asdzcslf97] {
        padding: 12px 15px;
    }
    
    .consent-section[b-asdzcslf97] {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .consent-section h4[b-asdzcslf97] {
        font-size: 0.95rem;
    }
    
    .consent-section li[b-asdzcslf97] {
        font-size: 0.85rem;
    }
    
    .consent-category[b-asdzcslf97] {
        padding: 8px;
    }
    
    .category-info strong[b-asdzcslf97] {
        font-size: 0.9rem;
    }
    
    .category-info small[b-asdzcslf97] {
        font-size: 0.8rem;
    }
    
    .consent-footer[b-asdzcslf97] {
        padding: 12px 15px;
    }
    
    .consent-actions .btn[b-asdzcslf97] {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .consent-technical-details[b-asdzcslf97] {
        padding: 12px 15px;
    }
    
    .tech-item[b-asdzcslf97] {
        flex-direction: column;
        gap: 5px;
    }
    
    .tech-item strong[b-asdzcslf97] {
        min-width: auto;
    }
    
    .consent-actions-detailed[b-asdzcslf97] {
        flex-direction: column;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .consent-content[b-asdzcslf97] {
        border: 2px solid #000;
    }
    
    .consent-header[b-asdzcslf97] {
        background: #000;
        color: #fff;
    }
    
    .checkmark[b-asdzcslf97] {
        border-color: #000;
    }
    
    .consent-category input[type="checkbox"]:checked + .checkmark[b-asdzcslf97] {
        background-color: #000;
        border-color: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .consent-banner[b-asdzcslf97],
    .consent-close[b-asdzcslf97],
    .consent-category[b-asdzcslf97],
    .btn-link[b-asdzcslf97],
    .checkmark[b-asdzcslf97] {
        transition: none;
    }
    
    @keyframes slideIn-b-asdzcslf97 {
        from, to {
            transform: scale(1) translateY(0);
            opacity: 1;
        }
    }
}
/* /Components/TelemetryDashboard.razor.rz.scp.css */
/* Telemetry Dashboard Styles */

.telemetry-dashboard[b-rg61s3ygjx] {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.dashboard-header[b-rg61s3ygjx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dashboard-header h2[b-rg61s3ygjx] {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.dashboard-controls[b-rg61s3ygjx] {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dashboard-controls .btn[b-rg61s3ygjx] {
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
}

.dashboard-controls .form-select[b-rg61s3ygjx] {
    min-width: 150px;
    padding: 8px 12px;
    border-radius: 6px;
}

.loading-spinner[b-rg61s3ygjx] {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    font-size: 18px;
}

.loading-spinner i[b-rg61s3ygjx] {
    margin-right: 10px;
    font-size: 24px;
}

.dashboard-section[b-rg61s3ygjx] {
    margin-bottom: 30px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dashboard-section h3[b-rg61s3ygjx] {
    margin: 0 0 20px 0;
    color: #333;
    font-weight: 600;
    font-size: 1.25rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

/* Metrics Grid */
.metrics-grid[b-rg61s3ygjx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.metric-card[b-rg61s3ygjx] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.metric-card:nth-child(2)[b-rg61s3ygjx] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.metric-card:nth-child(3)[b-rg61s3ygjx] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.metric-card:nth-child(4)[b-rg61s3ygjx] {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.metric-value[b-rg61s3ygjx] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.metric-label[b-rg61s3ygjx] {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-icon[b-rg61s3ygjx] {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

/* Question Activity */
.question-activity[b-rg61s3ygjx] {
    max-height: 300px;
    overflow-y: auto;
}

.question-activity-item[b-rg61s3ygjx] {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.question-activity-item:last-child[b-rg61s3ygjx] {
    border-bottom: none;
}

.question-id[b-rg61s3ygjx] {
    font-weight: 600;
    color: #495057;
    min-width: 40px;
}

.activity-bar[b-rg61s3ygjx] {
    flex: 1;
    height: 20px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.activity-fill[b-rg61s3ygjx] {
    height: 100%;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.activity-count[b-rg61s3ygjx] {
    font-weight: 500;
    color: #6c757d;
    min-width: 80px;
    text-align: right;
}

/* Error List */
.error-list[b-rg61s3ygjx] {
    max-height: 300px;
    overflow-y: auto;
}

.error-item[b-rg61s3ygjx] {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 12px;
    border: 1px solid #ffc107;
    background-color: #fff3cd;
    border-radius: 6px;
    margin-bottom: 10px;
}

.error-time[b-rg61s3ygjx] {
    font-family: monospace;
    font-size: 0.85rem;
    color: #856404;
    font-weight: 600;
}

.error-type[b-rg61s3ygjx] {
    background-color: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.error-message[b-rg61s3ygjx] {
    color: #721c24;
    font-size: 0.9rem;
}

.error-context[b-rg61s3ygjx] {
    font-size: 0.8rem;
    color: #856404;
    font-weight: 500;
}

/* Device Chart */
.device-chart[b-rg61s3ygjx] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.device-item[b-rg61s3ygjx] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.device-name[b-rg61s3ygjx] {
    font-weight: 500;
    color: #495057;
    min-width: 80px;
}

.device-bar[b-rg61s3ygjx] {
    flex: 1;
    height: 24px;
    background-color: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.device-fill[b-rg61s3ygjx] {
    height: 100%;
    background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 12px;
    transition: width 0.3s ease;
}

.device-percentage[b-rg61s3ygjx] {
    font-weight: 600;
    color: #495057;
    min-width: 50px;
    text-align: right;
}

/* Analytics Grid */
.analytics-grid[b-rg61s3ygjx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.analytics-card[b-rg61s3ygjx] {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.analytics-card h4[b-rg61s3ygjx] {
    background-color: #f8f9fa;
    margin: 0;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.analytics-content[b-rg61s3ygjx] {
    padding: 20px;
}

.analytics-item[b-rg61s3ygjx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.analytics-item:last-child[b-rg61s3ygjx] {
    border-bottom: none;
}

.analytics-item .label[b-rg61s3ygjx] {
    color: #6c757d;
    font-size: 0.9rem;
}

.analytics-item .value[b-rg61s3ygjx] {
    font-weight: 600;
    color: #495057;
}

/* Platform Grid */
.platform-grid[b-rg61s3ygjx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.platform-card[b-rg61s3ygjx] {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.platform-card h4[b-rg61s3ygjx] {
    background-color: #f8f9fa;
    margin: 0;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.platform-chart[b-rg61s3ygjx] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.platform-item[b-rg61s3ygjx] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.platform-name[b-rg61s3ygjx] {
    font-weight: 500;
    color: #495057;
    min-width: 100px;
}

.platform-bar[b-rg61s3ygjx] {
    flex: 1;
    height: 20px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.platform-fill[b-rg61s3ygjx] {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.platform-percentage[b-rg61s3ygjx] {
    font-weight: 600;
    color: #495057;
    min-width: 50px;
    text-align: right;
}

/* Error Analysis */
.error-analysis[b-rg61s3ygjx] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.error-analysis-item[b-rg61s3ygjx] {
    border: 1px solid #dc3545;
    border-radius: 6px;
    overflow: hidden;
}

.error-type-header[b-rg61s3ygjx] {
    background-color: #dc3545;
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.error-type-name[b-rg61s3ygjx] {
    font-weight: 600;
}

.error-count[b-rg61s3ygjx] {
    font-size: 0.9rem;
}

.error-messages[b-rg61s3ygjx] {
    padding: 15px;
    background-color: #f8d7da;
}

.error-message-item[b-rg61s3ygjx] {
    font-family: monospace;
    font-size: 0.85rem;
    color: #721c24;
    padding: 5px 0;
    border-bottom: 1px solid #f5c6cb;
}

.error-message-item:last-child[b-rg61s3ygjx] {
    border-bottom: none;
}

/* User Flows */
.user-flows[b-rg61s3ygjx] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.user-flow-item[b-rg61s3ygjx] {
    border: 1px solid #17a2b8;
    border-radius: 6px;
    overflow: hidden;
}

.flow-header[b-rg61s3ygjx] {
    background-color: #17a2b8;
    color: white;
    padding: 10px 15px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.flow-users[b-rg61s3ygjx],
.flow-completion[b-rg61s3ygjx],
.flow-time[b-rg61s3ygjx] {
    font-size: 0.9rem;
    font-weight: 500;
}

.flow-path[b-rg61s3ygjx] {
    padding: 15px;
    background-color: #d1ecf1;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.flow-question[b-rg61s3ygjx] {
    background-color: #17a2b8;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.flow-arrow[b-rg61s3ygjx] {
    color: #17a2b8;
    font-weight: bold;
}

/* Dashboard Footer */
.dashboard-footer[b-rg61s3ygjx] {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .telemetry-dashboard[b-rg61s3ygjx] {
        padding: 10px;
    }
    
    .dashboard-header[b-rg61s3ygjx] {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .dashboard-controls[b-rg61s3ygjx] {
        flex-direction: column;
        width: 100%;
    }
    
    .metrics-grid[b-rg61s3ygjx] {
        grid-template-columns: 1fr;
    }
    
    .analytics-grid[b-rg61s3ygjx] {
        grid-template-columns: 1fr;
    }
    
    .platform-grid[b-rg61s3ygjx] {
        grid-template-columns: 1fr;
    }
    
    .error-item[b-rg61s3ygjx] {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .flow-header[b-rg61s3ygjx] {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .dashboard-section[b-rg61s3ygjx] {
        padding: 15px;
    }
    
    .metric-card[b-rg61s3ygjx] {
        text-align: center;
        padding: 15px;
    }
    
    .metric-value[b-rg61s3ygjx] {
        font-size: 2rem;
    }
    
    .question-activity-item[b-rg61s3ygjx],
    .device-item[b-rg61s3ygjx],
    .platform-item[b-rg61s3ygjx] {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .activity-bar[b-rg61s3ygjx],
    .device-bar[b-rg61s3ygjx],
    .platform-bar[b-rg61s3ygjx] {
        width: 100%;
        order: 2;
    }
}
/* /Pages/RecommendationComponent.razor.rz.scp.css */
/* RecommendationComponent CSS - Clean Structure */

/* Gradient Animation - VerstÃ¤rkt fÃ¼r sichtbaren Effekt */
@keyframes gradientShift-b-kuotd2tpuf {
    0% { 
        background-position: 0% 50% !important;
    }
    20% { 
        background-position: 30% 20% !important;
    }
    40% { 
        background-position: 80% 60% !important;
    }
    60% { 
        background-position: 100% 80% !important;
    }
    80% { 
        background-position: 60% 100% !important;
    }
    100% { 
        background-position: 0% 50% !important;
    }
}

/* Header Basis-Styling - VerstÃ¤rkt */
.recommendation-header[b-kuotd2tpuf] {
    position: relative !important;
    display: block !important;
    z-index: 10 !important;
}

/* Fallback fÃ¼r Browser ohne Gradient-UnterstÃ¼tzung */
.recommendation-header[b-kuotd2tpuf] {
    background-color: #153A83 !important;
}

/* VerstÃ¤rkter Gradient-Ãœbergang */
.recommendation-header[b-kuotd2tpuf]::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, 
        rgba(15, 45, 107, 0.3) 0%, 
        transparent 30%, 
        rgba(40, 81, 175, 0.2) 50%, 
        transparent 70%, 
        rgba(15, 45, 107, 0.3) 100%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* Content Ã¼ber Overlay */
.recommendation-header > *[b-kuotd2tpuf] {
    position: relative !important;
    z-index: 2 !important;
}

/* Bottom-Linie verstÃ¤rkt */
.recommendation-header[b-kuotd2tpuf]::before {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 10%, 
        rgba(255, 255, 255, 0.8) 25%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(255, 255, 255, 0.8) 75%, 
        rgba(255, 255, 255, 0.4) 90%, 
        transparent 100%) !important;
    z-index: 3 !important;
}

/* Responsive Anpassungen - VerstÃ¤rkt */
@media (max-width: 768px) {
    .recommendation-header[b-kuotd2tpuf] {
        padding: 2.5rem 0 2rem 0 !important;
        margin-bottom: 1.5rem !important;
        background-size: 400% 400% !important;
    }
}

@media (max-width: 480px) {
    .recommendation-header[b-kuotd2tpuf] {
        padding: 2rem 0 1.5rem 0 !important;
        margin-bottom: 1rem !important;
        background-size: 500% 500% !important;
    }
}

/* Accessibility - Reduzierte Animation */
@media (prefers-reduced-motion: reduce) {
    .recommendation-header[b-kuotd2tpuf] {
        animation: none !important;
        background-size: 100% 100% !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .recommendation-header[b-kuotd2tpuf] {
        background: #153A83 !important;
        animation: none !important;
        border: 2px solid white !important;
    }
    
    .recommendation-header[b-kuotd2tpuf]::after,
    .recommendation-header[b-kuotd2tpuf]::before {
        display: none !important;
    }
}

/* Print Styles */
@media print {
    .recommendation-header[b-kuotd2tpuf] {
        background: #153A83 !important;
        animation: none !important;
        box-shadow: none !important;
        color-adjust: exact !important;
        -webkit-print-color-adjust: exact !important;
    }
    
    .recommendation-header[b-kuotd2tpuf]::after,
    .recommendation-header[b-kuotd2tpuf]::before {
        display: none !important;
    }
}

/* Single Line Text fÃ¼r Enthaltene Funktionen */
:where(.mud-typography:has-text("Enthaltene Funktionen"))[b-kuotd2tpuf] {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Alternative: Spezifischer Selektor fÃ¼r den Funktionen-Header */
:where(div[style*="flex: 1"]) .mud-typography[style*="font-size: 24px"][b-kuotd2tpuf] {
    white-space: nowrap !important;
    min-width: max-content !important;
}

/* Responsive Anpassungen fÃ¼r kleinere Bildschirme */
@media (max-width: 1023px) {
    :where(div[style*="flex: 1"]) .mud-typography[style*="font-size: 24px"][b-kuotd2tpuf] {
        font-size: 20px !important;
        white-space: normal !important;
    }
}

@media (max-width: 767px) {
    :where(div[style*="flex: 1"]) .mud-typography[style*="font-size: 24px"][b-kuotd2tpuf] {
        font-size: 18px !important;
        white-space: normal !important;
    }
}

/* Button Styling fÃ¼r Aktions-Buttons */
:where(.export-button)[b-kuotd2tpuf] {
    background-color: transparent !important;
    color: #2c5aa0 !important;
    border: 1px solid #2c5aa0 !important;
    transition: all 0.3s ease !important;
}

:where(.export-button):hover:not(:disabled)[b-kuotd2tpuf] {
    background-color: #2c5aa0 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(44, 90, 160, 0.3) !important;
}

:where(.action-button-primary)[b-kuotd2tpuf] {
    background-color: #2c5aa0 !important;
    color: white !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

:where(.action-button-primary):hover[b-kuotd2tpuf] {
    background-color: #1e3d6f !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.4) !important;
}

/* Responsive Button Layout */
@media (max-width: 1279px) {
    /* Tablet: Buttons bleiben nebeneinander aber kleiner */
    :where(div[style*="gap: 0.75rem"])[b-kuotd2tpuf] {
        gap: 0.5rem !important;
    }
    
    :where(.export-button)[b-kuotd2tpuf],
    :where(.action-button-primary)[b-kuotd2tpuf] {
        padding: 10px 16px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 1023px) {
    /* Kleinere Tablets: Buttons in 2+1 Layout */
    :where(div[style*="display: flex; gap: 0.75rem; flex-wrap: wrap"])[b-kuotd2tpuf] {
        max-width: 500px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 767px) {
    /* Mobile: Buttons vertikal gestapelt */
    :where(div[style*="display: flex; gap: 0.75rem; flex-wrap: wrap"])[b-kuotd2tpuf] {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    :where(.export-button)[b-kuotd2tpuf],
    :where(.action-button-primary)[b-kuotd2tpuf] {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        min-height: 44px !important; /* Touch-friendly size */
        justify-content: center !important;
    }
    
    /* Icon-GrÃ¶ÃŸe anpassen */
    :where(.export-button) .mud-button-start-icon[b-kuotd2tpuf],
    :where(.action-button-primary) .mud-button-start-icon[b-kuotd2tpuf] {
        font-size: 18px !important;
        margin-right: 8px !important;
    }
    
    /* Text nicht umbrechen */
    :where(.export-button) span[b-kuotd2tpuf],
    :where(.action-button-primary) span[b-kuotd2tpuf] {
        white-space: nowrap !important;
    }
}

@media (max-width: 479px) {
    /* Sehr kleine Screens: Noch kompakter */
    :where(.export-button)[b-kuotd2tpuf],
    :where(.action-button-primary)[b-kuotd2tpuf] {
        font-size: 13px !important;
        padding: 10px 12px !important;
    }
    
    /* Icons optional ausblenden */
    :where(.export-button) .mud-button-start-icon[b-kuotd2tpuf],
    :where(.action-button-primary) .mud-button-start-icon[b-kuotd2tpuf] {
        display: none !important;
    }
}

/* Focus-Styles fÃ¼r Accessibility */
:where(.export-button):focus-visible[b-kuotd2tpuf],
:where(.action-button-primary):focus-visible[b-kuotd2tpuf] {
    outline: 2px solid #2c5aa0 !important;
    outline-offset: 2px !important;
}

/* Disabled State */
:where(.export-button):disabled[b-kuotd2tpuf] {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    background-color: #f0f0f0 !important;
}

/* Loading Animation fÃ¼r PDF-Export */
:where(.export-button):disabled .mud-button-start-icon[b-kuotd2tpuf] {
    animation: spin-b-kuotd2tpuf 1s linear infinite !important;
}

@keyframes spin-b-kuotd2tpuf {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Print Styles - Buttons nicht drucken */
@media print {
    :where(.export-button)[b-kuotd2tpuf],
    :where(.action-button-primary)[b-kuotd2tpuf],
    :where(div[style*="display: flex; gap: 0.5rem"])[b-kuotd2tpuf] {
        display: none !important;
    }
}

/* Responsive Erweiterungen fÃ¼r Kategorien-Box */

/* Mobile (â‰¤767px) */
@media (max-width: 767px) {
    /* Hauptcontainer Stack-Layout auf Mobile */
    :where(div[style*="display: flex"][style*="gap: 3rem"])[b-kuotd2tpuf] {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    /* Erweiterungen Sidebar wird Full-Width auf Mobile */
    :where(div[style*="flex: 0 0 320px"])[b-kuotd2tpuf] {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        margin-top: 1rem !important;
    }
    
    /* Edition Info anpassen */
    :where(div[style*="display: flex"][style*="gap: 1.5rem"][style*="margin-bottom: 1.5rem"])[b-kuotd2tpuf] {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Edition Image zentrieren */
    :where(div[style*="flex-shrink: 0"])[b-kuotd2tpuf] {
        margin: 0 auto !important;
    }
    
    /* Zahlungsoptionen Stack auf Mobile */
    :where(div[style*="display: flex"][style*="justify-content: space-between"][style*="flex-wrap: wrap"])[b-kuotd2tpuf] {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: stretch !important;
    }
    
    /* Zahlungsoptionen Icons Stack */
    :where(div[style*="display: flex"][style*="gap: 1.5rem"][style*="align-items: center"])[b-kuotd2tpuf] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }
    
    /* Buttons volle Breite */
    :where(div[style*="display: flex"][style*="gap: 0.75rem"])[b-kuotd2tpuf] {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    :where(div[style*="display: flex"][style*="gap: 0.75rem"]) button[b-kuotd2tpuf] {
        width: 100% !important;
    }
}

/* Tablet (768â€“1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Hauptcontainer anpassen */
    :where(div[style*="display: flex"][style*="gap: 3rem"])[b-kuotd2tpuf] {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    /* Erweiterungen Sidebar Full-Width */
    :where(div[style*="flex: 0 0 320px"])[b-kuotd2tpuf] {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
    
    /* Erweiterungen Grid auf Tablet - 3 Spalten nebeneinander */
    :where(div[style*="flex: 0 0 320px"]) > :where(div[style*="display: flex"][style*="flex-direction: column"])[b-kuotd2tpuf] {
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 1rem !important;
    }
    
    :where(div[style*="flex: 0 0 320px"]) > :where(div[style*="display: flex"]) > div[b-kuotd2tpuf] {
        flex: 1 !important;
    }
}

/* Desktop (â‰¥1024px) */
@media (min-width: 1024px) {
    /* Container optimal fÃ¼r Desktop */
    :where(#recommendation-container)[b-kuotd2tpuf] {
        max-width: 1200px !important;
    }
}

/* Wide Desktop (â‰¥1280px) */
@media (min-width: 1280px) {
    :where(#recommendation-container)[b-kuotd2tpuf] {
        max-width: 1400px !important;
    }
}

/* Diese Anpassungen erweitern dein bestehendes CSS, ohne es zu Ã¼berschreiben oder neue Dateien zu erzeugen. */
.selection-summary[b-kuotd2tpuf] {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(240, 244, 255, 0.95) 0%, rgba(226, 232, 240, 0.9) 100%);
    border-radius: 16px;
    border: 1px solid rgba(44, 90, 160, 0.18);
    box-shadow: 0 12px 28px rgba(44, 90, 160, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.summary-header[b-kuotd2tpuf] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #1a2332;
}

.summary-header-icon[b-kuotd2tpuf] {
    color: #2c5aa0 !important;
    font-size: 1.8rem !important;
}

.summary-chip-group[b-kuotd2tpuf] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.selection-chip[b-kuotd2tpuf] {
    font-weight: 600 !important;
    letter-spacing: 0.2px !important;
    border-radius: 999px !important;
    padding: 0.35rem 0.9rem !important;
}

.selection-chip-product[b-kuotd2tpuf] {
    background: rgba(44, 90, 160, 0.12) !important;
    color: #1a2332 !important;
    border-color: rgba(44, 90, 160, 0.35) !important;
}

.selection-chip-recommendation[b-kuotd2tpuf] {
    background: rgba(16, 185, 129, 0.12) !important;
    color: #0f9664 !important;
    border-color: rgba(16, 185, 129, 0.35) !important;
}

.recommendation-main-layout.single-recommendation-wrapper[b-kuotd2tpuf] {
    justify-content: center !important;
}

.recommendation-shell.single-highlight[b-kuotd2tpuf] {
    border: 2px solid rgba(44, 90, 160, 0.55) !important;
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.18) !important;
}

.single-recommendation-banner[b-kuotd2tpuf] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.85rem 1.15rem;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.12) 0%, rgba(15, 45, 107, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(44, 90, 160, 0.2);
}

.single-recommendation-banner-icon[b-kuotd2tpuf] {
    color: #2c5aa0 !important;
}

.single-recommendation-banner-title[b-kuotd2tpuf] {
    font-weight: 700 !important;
    color: #1a2332 !important;
    margin-bottom: 0.15rem !important;
}

.single-recommendation-banner-subtitle[b-kuotd2tpuf] {
    color: #4a5568 !important;
    font-size: 0.9rem !important;
}

@media (max-width: 768px) {
    .selection-summary[b-kuotd2tpuf] {
        padding: 1.1rem 1.25rem;
    }

    .summary-chip-group[b-kuotd2tpuf] {
        gap: 0.4rem;
    }

    .selection-chip[b-kuotd2tpuf] {
        font-size: 0.85rem !important;
    }

    .single-recommendation-banner[b-kuotd2tpuf] {
        flex-direction: column;
        align-items: flex-start;
    }
}
.selection-chip-content[b-kuotd2tpuf] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.selection-chip-icon[b-kuotd2tpuf] {
    color: inherit !important;
}
/* /Pages/TelemetryDashboardPage.razor.rz.scp.css */
/* Telemetry Dashboard Page Styles */

.telemetry-dashboard-page[b-38osrtkwiw] {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.page-header[b-38osrtkwiw] {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-title[b-38osrtkwiw] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
}

.page-description[b-38osrtkwiw] {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Consent Notice */
.consent-notice[b-38osrtkwiw] {
    margin-bottom: 30px;
}

.consent-notice .alert[b-38osrtkwiw] {
    border: none;
    border-radius: 12px;
    padding: 20px;
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.consent-notice h4[b-38osrtkwiw] {
    color: #1565c0;
    margin-bottom: 15px;
    font-weight: 600;
}

.consent-notice p[b-38osrtkwiw] {
    color: #1976d2;
    margin-bottom: 20px;
    line-height: 1.6;
}

.consent-notice .btn[b-38osrtkwiw] {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.consent-notice .btn:hover[b-38osrtkwiw] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

/* Test Section */
.test-section[b-38osrtkwiw] {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.test-section h3[b-38osrtkwiw] {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.test-buttons[b-38osrtkwiw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.test-buttons .btn[b-38osrtkwiw] {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-width: 2px;
}

.test-buttons .btn:hover[b-38osrtkwiw] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.test-buttons .btn-outline-primary[b-38osrtkwiw] {
    border-color: #667eea;
    color: #667eea;
}

.test-buttons .btn-outline-primary:hover[b-38osrtkwiw] {
    background-color: #667eea;
    border-color: #667eea;
    color: white;
}

.test-buttons .btn-outline-success[b-38osrtkwiw] {
    border-color: #28a745;
    color: #28a745;
}

.test-buttons .btn-outline-success:hover[b-38osrtkwiw] {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.test-buttons .btn-outline-warning[b-38osrtkwiw] {
    border-color: #ffc107;
    color: #ffc107;
}

.test-buttons .btn-outline-warning:hover[b-38osrtkwiw] {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529;
}

.test-buttons .btn-outline-info[b-38osrtkwiw] {
    border-color: #17a2b8;
    color: #17a2b8;
}

.test-buttons .btn-outline-info:hover[b-38osrtkwiw] {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: white;
}

.test-result[b-38osrtkwiw] {
    margin-top: 15px;
}

.test-result .alert-success[b-38osrtkwiw] {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid #c3e6cb;
}

/* Telemetry Status */
.telemetry-status[b-38osrtkwiw] {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.telemetry-status h4[b-38osrtkwiw] {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.status-grid[b-38osrtkwiw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.status-item[b-38osrtkwiw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.status-label[b-38osrtkwiw] {
    font-weight: 500;
    color: #495057;
}

.status-value[b-38osrtkwiw] {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-value code[b-38osrtkwiw] {
    background-color: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #495057;
}

.status-value .badge[b-38osrtkwiw] {
    background-color: #17a2b8;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.status-actions[b-38osrtkwiw] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.status-actions .btn[b-38osrtkwiw] {
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.status-actions .btn:hover[b-38osrtkwiw] {
    transform: translateY(-1px);
}

/* Text Colors */
.text-success[b-38osrtkwiw] {
    color: #28a745 !important;
}

.text-danger[b-38osrtkwiw] {
    color: #dc3545 !important;
}

.text-info[b-38osrtkwiw] {
    color: #17a2b8 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .telemetry-dashboard-page[b-38osrtkwiw] {
        padding: 15px;
    }
    
    .page-title[b-38osrtkwiw] {
        font-size: 2rem;
    }
    
    .page-description[b-38osrtkwiw] {
        font-size: 1rem;
    }
    
    .test-section[b-38osrtkwiw],
    .telemetry-status[b-38osrtkwiw] {
        padding: 20px;
    }
    
    .test-buttons[b-38osrtkwiw] {
        grid-template-columns: 1fr;
    }
    
    .status-grid[b-38osrtkwiw] {
        grid-template-columns: 1fr;
    }
    
    .status-item[b-38osrtkwiw] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .status-actions[b-38osrtkwiw] {
        justify-content: center;
    }
    
    .status-actions .btn[b-38osrtkwiw] {
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .page-header[b-38osrtkwiw] {
        padding: 15px;
    }
    
    .page-title[b-38osrtkwiw] {
        font-size: 1.8rem;
    }
    
    .test-section[b-38osrtkwiw],
    .telemetry-status[b-38osrtkwiw] {
        padding: 15px;
    }
    
    .test-buttons .btn[b-38osrtkwiw] {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .status-actions[b-38osrtkwiw] {
        flex-direction: column;
    }
    
    .status-actions .btn[b-38osrtkwiw] {
        width: 100%;
        margin-bottom: 8px;
    }
}

/* Loading Animation */
@keyframes pulse-b-38osrtkwiw {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.loading[b-38osrtkwiw] {
    animation: pulse-b-38osrtkwiw 1.5s ease-in-out infinite;
}

/* Icon Improvements */
.test-buttons .btn i[b-38osrtkwiw],
.status-actions .btn i[b-38osrtkwiw],
.consent-notice .btn i[b-38osrtkwiw] {
    margin-right: 8px;
}

.status-value i[b-38osrtkwiw] {
    font-size: 1.1rem;
}

/* Focus States for Accessibility */
.btn:focus[b-38osrtkwiw],
.btn:focus-visible[b-38osrtkwiw] {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .telemetry-dashboard-page[b-38osrtkwiw] {
        background-color: white;
    }
    
    .page-header[b-38osrtkwiw],
    .test-section[b-38osrtkwiw],
    .telemetry-status[b-38osrtkwiw] {
        border: 2px solid #000;
    }
    
    .status-item[b-38osrtkwiw] {
        border-color: #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .btn[b-38osrtkwiw],
    .test-buttons .btn[b-38osrtkwiw],
    .status-actions .btn[b-38osrtkwiw] {
        transition: none;
    }
    
    .btn:hover[b-38osrtkwiw],
    .test-buttons .btn:hover[b-38osrtkwiw],
    .status-actions .btn:hover[b-38osrtkwiw] {
        transform: none;
    }
    
    .loading[b-38osrtkwiw] {
        animation: none;
    }
}
