/* Add to existing styles */
.synced-badge {
    background: #28a745;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.offline-badge {
    background: #ffc107;
    color: #212529;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

/* Add to responsive design section */
@media (max-width: 768px) {
    .scanned-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .offline-indicator {
        align-self: flex-start;
    }
    
    .scanned-users-table th:nth-child(5),
    .scanned-users-table td:nth-child(5) {
        display: none;
    }
}
