/* Browser Info Page Specific Styles */

.info-section {
    margin-bottom: 2rem;
}

.info-section-title {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Fingerprint Display */
.fingerprint-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    color: white;
    margin-bottom: 1rem;
}

.fingerprint-id {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.fingerprint-id code {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    display: inline-block;
    margin-top: 0.5rem;
    word-break: break-all;
}

.confidence-score {
    opacity: 0.9;
    font-size: 0.9rem;
}

.loading-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
}

/* Components Table */
#componentsTable th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem;
}

#componentsTable details {
    cursor: pointer;
}

#componentsTable details summary {
    color: var(--primary-color);
    font-weight: 500;
}

#componentsTable details summary:hover {
    text-decoration: underline;
}

#componentsTable code {
    background: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
    color: #e83e8c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fingerprint-display {
        padding: 1.5rem 1rem;
    }
    
    .fingerprint-id code {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    #componentsTable td:nth-child(3) {
        font-size: 0.8em;
    }
}
