/* Custom styles for browser fingerprinting tool */

.info-item {
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--bs-border-color);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-item strong {
    color: var(--bs-info);
    font-weight: 600;
}

.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.font-monospace {
    font-family: 'Courier New', Courier, monospace;
}

#canvas {
    background: var(--bs-light);
    border-radius: 4px;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

.badge {
    font-size: 0.75em;
}

.text-break {
    word-break: break-all;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .info-item {
        margin-bottom: 0.5rem;
    }
}

/* Loading animation */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Copy button animation */
.btn {
    transition: all 0.2s ease;
}

/* Status messages */
.alert {
    border: none;
    border-radius: 8px;
}

/* Fingerprint hash styling */
#fingerprint-hash {
    background: var(--bs-dark);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    border: 1px solid var(--bs-border-color);
}

/* Plugin and font lists */
#plugins-list .small,
#fonts-list .badge {
    line-height: 1.4;
}

/* Canvas styling */
#canvas {
    max-width: 100%;
    height: auto;
}
