/* User Agent Parser Tool Styles */

.info-grid {
    display: grid;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 0.375rem;
}

.info-item strong {
    color: #495057;
    min-width: 80px;
}

.history-item:hover {
    background-color: #f8f9fa;
}

.tool-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

pre {
    font-size: 0.875rem;
    white-space: pre-wrap;
    word-break: break-all;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .info-item strong {
        min-width: unset;
    }
    
    .tool-actions {
        flex-direction: column;
    }
}
