/* Full Device Check Stylesheet */

.apple-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.apple-glass-interactive {
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.apple-glass-interactive:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.15);
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge-not-started {
    background: rgba(113, 113, 122, 0.15);
    color: #a1a1aa;
    border: 1px solid rgba(113, 113, 122, 0.25);
}

.status-badge-running {
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
    border: 1px solid rgba(6, 182, 212, 0.35);
    animation: pulse-border 1.5s infinite;
}

.status-badge-passed {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.status-badge-attention {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.status-badge-skipped {
    background: rgba(113, 113, 122, 0.15);
    color: #d4d4d8;
    border: 1px solid rgba(113, 113, 122, 0.25);
}

.status-badge-unsupported {
    background: rgba(82, 82, 91, 0.15);
    color: #a1a1aa;
    border: 1px solid rgba(82, 82, 91, 0.25);
}

.status-badge-waiting {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.35);
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(6, 182, 212, 0);
    }
}

/* Preset Buttons */
.preset-btn {
    transition: all 0.2s ease-in-out;
}

.preset-btn.active {
    background: rgba(6, 182, 212, 0.2) !important;
    border-color: rgba(6, 182, 212, 0.5) !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

/* Canvas & Meter Visualizers */
.meter-bar-fill {
    transition: width 0.1s ease-out;
}
